Home User profile
tagDiv Staff
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
Simion C.
tagDiv Staff

Hi,

Woocommerce will import a default shop page initially, this will show products on the page like this
https://www.screencast.com/t/8AfWgJnt
https://docs.woocommerce.com/document/woocommerce-pages/
The number of products per page can be controlled like this
https://docs.woocommerce.com/document/change-number-of-products-displayed-per-page/
That code in the child theme or main theme functions.php file will allow you to change the number of products on a default shop page.

Or you can display products on pages using the shortcodes provided by woocommerce
https://docs.woocommerce.com/document/woocommerce-shortcodes/
These shortcodes can be entered on pages using a text element, with the tagDiv composer
https://www.screencast.com/t/6YDbXpsd
https://www.screencast.com/t/3t4Vz2t8
This way you could display for example products and other elements on the same page. This is how the theme woocommerce demo is made, with shortcodes
https://demo.tagdiv.com/newspaper_tech/shop/
This the actual page content of the demo page, maybe you can look it over
https://pastebin.com/2RCe4N7C

Thanks

Simion C.
tagDiv Staff

I have tried the row stretch feature
https://www.screencast.com/t/KUbqq7qB0
The row is full width, there is no issue with it. The only time I can think of when the row stretch will not work, is when a background is set, either color or image. Check in the theme panel, maybe there is a white background color set.

Simion C.
tagDiv Staff

Ar depinde de post template, in postul acela este folosit post template default. Imaginea va fi de maxim 696px, aceasta e latimea predefinita in tema. Daca se foloseste o imagine mai mica initial, va aparea exact asa cum e (de exemplu 500px) si va ramane spatiu neocupat.
Deci pe acel post template imaginile ar trbui sa fie de minim 696px, pentru rezultate bune.

Multumesc!

Simion C.
tagDiv Staff

1. To make that a rectangle, changing the width should do the job, like this
https://www.screencast.com/t/ZpWiBNjzYfyt
You could make the modification in the code provided previously to style the blocks as the gadgets demo
https://www.screencast.com/t/9Zx7MwUb
By default it is 5px by 5px, a square.

2. Regarding the icons, additionally to changing the height another modifications must be made, like this
https://www.screencast.com/t/habOGJwNdz
https://www.screencast.com/t/HtFWFCDHKvfw

.td-social-network{
height: 33px;
}
.td-social-but-icon {
line-height: 33px;
}

Simion C.
tagDiv Staff

I would suggest to deactivate all plugins except theme plugins, deactivate the child theme if used. Check or remove temporarily any custom code you might have added in the theme custom code sections, or directly in the theme files.
Ultimately try to reinstall the theme by FTP if possible
https://forum.tagdiv.com/install-via-ftp/
If there is still a problem, send us an email at contact@tagdiv.com and provide admin login information so we can take a look. Also paste a link to this topic in the email.

Simion C.
tagDiv Staff

Hi,

For pages there is a HTML element that can be used, or as a widget in the sidebar
https://www.screencast.com/t/NsfsUF4XMVT
But for JS there is no specific element. However you can try entering both in the HTML element and see if they work properly (or make adjustments)
https://www.screencast.com/t/9WlFrFHh
You could place this in a HTML widget in the sidebar, to appear on posts. The page builder cannot be used on posts.

Thanks

Simion C.
tagDiv Staff

Hi,

Adsense ads if used, can be deactivated with theme panel settings for each device
https://www.screencast.com/t/efkKc6ucAK
These settings will not work for other ads, in that case you can use a different implementation, like this
https://forum.tagdiv.com/using-other-ads-non-adsense-ads/
Wrap the ad code in the provided classes and they will be displayed accordingly.
If this is not related to your issue, please provide some more details about the problem.

Thanks

Simion C.
tagDiv Staff

Hi,

Unfortunately I don’t understand what you mean about the sharing buttons. If you could provide some more details about this, it would be helpful.

Thanks

Simion C.
tagDiv Staff

Yes that is allowed, I should have given you this alternative as well. Add the nofollow attribute to the link as you mention in that file
https://www.screencast.com/t/nmTeG75t
The file can be modified in the child theme as well
https://forum.tagdiv.com/the-child-theme-support-tutorial/

Simion C.
tagDiv Staff

Hi,

I have tested the embed, this is how they look for me, with no space
https://www.screencast.com/t/cMqiIMgI
When using a post from your website the space appears
https://www.screencast.com/t/Z6Ye9w1n8
It seems it is trying to load an Adsense ad as well, below the embed
https://www.screencast.com/t/ksSkP3mgZL
I see that the ad is originally in the post page but I could not say why it is loaded in the embed, or what should be done to prevent this.
A solution visually would be to set a max-height for the iframe embed
https://www.screencast.com/t/P3iqZHXWZGs

.wp-embedded-content{
max-height: 577px!important;
}

Thanks

Simion C.
tagDiv Staff

Seems the images from the uploads folder cannot be accessed, for example the image used on this post featured image
http://losarmnews.com/los-angeles/2018/01/4058/
http://losarmnews.com/wp-content/uploads/2018/01/val.jpg
Facebook is unable to get this image
https://www.screencast.com/t/djrPmFOn
This could be caused by htaccess configuration or plugins (security plugins maybe). You could try changing the permalink structure in WordPress settings as well, use a different format and test again with the debugger
https://developers.facebook.com/tools/debug/

Simion C.
tagDiv Staff

Hi,

That would suggest the composer is not working properly. First please check the theme system status
https://forum.tagdiv.com/system-status-parameters-guide/
Ask your hosting provider to increase the allocated resources according to the guide, if necessary. Check to see if the composer works as it should after doing this.
Additionally deactivate all other plugins except theme plugins as a quick test, to eliminate a plugin conflict. Try the composer again. Let us know the results.

Thanks

Simion C.
tagDiv Staff

Hi,

The theme will work properly given these requirements
https://forum.tagdiv.com/requirements-for-newspaper/
Also these recommended values for the server and WordPress
https://forum.tagdiv.com/system-status-parameters-guide/
Test with no plugins active except theme plugins, remove theme modifications, deactivate child theme if used. Additionally try a theme reinstall by FTP
https://forum.tagdiv.com/install-via-ftp/
Note that the theme is tested with PHP versions up to 7.1 higher versions may cause issues.

Thanks

Simion C.
tagDiv Staff

Hi,

You could create one sidebar, add a block with the configuration to display posts from the category you want. Set this sidebar for the category
https://www.screencast.com/t/8eaD0gO9
In the post pages for posts that belong to that category you can set a primary category
https://forum.tagdiv.com/primary-category/
All the posts that have it as a primary category will inherit that sidebar once set. This way you can control the sidebar for multiple posts at once.

Thanks

Simion C.
tagDiv Staff

Hi,

It seems to point to an advanced cache file in the wordpress install folder (wp-content). This could be from a different caching system and could affect the super cache. I could not say if you should remove it or not. I have not seen this issue before and also there are no mentioned of this online.
You could try to first backup that file (wp-content/advanced-cache.php) and remove it. Then check if the super cache works without any errors.

Thanks

Simion C.
tagDiv Staff

Such a difference is not possible, I have compared the same posts exactly using Chrome browser and Firefox
https://www.screencast.com/t/ZaMruY00jjO2
I have also inspected the posts on your website, I see nothing out of the ordinary with them regarding the width. Test in the same browser both websites, try without extensions in the browser, or test in other browsers as well.

Thanks

Simion C.
tagDiv Staff

Hi,


@baztanet
This is how the socials look for me on the website you provided, on initial load without taking any action
https://www.screencast.com/t/k8gNmYnt
https://www.screencast.com/t/seozy0Kx
https://www.screencast.com/t/O7fyHUfbgMhf
I see no issues with them, they are displaying properly from what I can see at the moment.

Thanks

Simion C.
tagDiv Staff

Hi,

1. The news ticker has the same filtering as all blocks have
https://forum.tagdiv.com/block-settings-guide/
If you want to set a limit this is possible. For example set a limit of 5 and sorted by latest
https://www.screencast.com/t/FDQbEI8Mn
https://www.screencast.com/t/kSvaqm4m
It will always show the latest 5 posts.

2. Same for blocks, they have a limit of posts to show, default is 5. You can choose from which category to show posts, and a sorting order. Check the Filter tab for each block. The name of the block can be changed in the general tab.

So simply edit the page with the tagDiv composer and customize it the way you want
https://forum.tagdiv.com/tagdiv-composer-tutorial/

Let us know if you have further questions.

Thanks

Simion C.
tagDiv Staff

The code provided by Bogdan seems to have worked, the space is reduced like you wanted. If you want to completely remove it on mobile while leaving it as it is on desktop, there is a solution.
First move the code from the Custom CSS section in the Advanced CSS->Desktop. Then enter this one in the phones CSS section
https://www.screencast.com/t/1laavicz

.td-main-page-wrap {
padding-top: 0;
}

The result will be no change on desktop, while on mobile the padding will be 0
https://www.screencast.com/t/DFVmixMo

Thanks

Simion C.
tagDiv Staff

Hi,

The footer can have a maximum of 3 columns at all times
https://forum.tagdiv.com/footer-templates/
All the footer templates are based on this limitation. You could however display a page in the footer created anyway you like, with any row layouts
https://www.screencast.com/t/QyYHYPguke
https://www.screencast.com/t/oD2LhfFq07S

Thanks

Simion C.
tagDiv Staff

Hi,

That could only be done with custom code. You can use the browser inspector for this, inspect the elements used and create the code. A similar border can be set like this
https://www.screencast.com/t/XmN2EYR6Ff8

.td-header-style-5 .td-main-menu-logo,
.td-header-style-5 #td-header-menu .menu-item {
border-right: 1px solid white;
}

Then you can color the menu items as you wish, like in this topic
https://forum.tagdiv.com/topic/changing-the-themes-colour-per-page/

This is a guide for using the browser inspector to make this kind of customization, It is a very powerful tool
https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/

Thanks

Simion C.
tagDiv Staff

Hi,

Not all the files from the booster folder can be customized in the child theme. However the file you mention can be
https://forum.tagdiv.com/the-child-theme-support-tutorial/
So you can make the modifications you want in a child theme for that file.

Thanks

Simion C.
tagDiv Staff

Then the module type has to be included in the code, like this
https://www.screencast.com/t/OKaIdM8Kc

.td_block_1 .td_module_6 .td-post-category {
color: yellow;
background-color: blue;
}
.td_block_1 .td_module_6 .td-post-category:hover {
color: green;
background-color: brown;
}

Simion C.
tagDiv Staff

Hi,

Maybe something like this – https://www.screencast.com/t/PKq1GBzJmpV8
Enter the code in Theme panel->Advanced CSS in the desktop section, so it will not affect other devices (this may not look well on smaller devices). You can make modifications to the value in the code if needed.

.td-header-style-8 .td-header-sp-logo {
top: 40px;
}

Thanks

Simion C.
tagDiv Staff

Hi,

It could be similar to the issue in this topic
https://forum.tagdiv.com/topic/upgraded-to-v8-5-from-v8-2-and-got-wp-booster-error/
If you updated by patch try the suggestion mentioned there.

Thanks

Viewing 25 posts - 12,901 through 12,925 (of 20,681 total)