Search Results for 'child theme'

    No search results were found in Documentation!

Results from the Forum
Topadmin
Participant
#0

Hello.
I’m using the mobile theme plugin and I’d like to add a div to certain pages (home and posts) so I’m wondering if is it possible to edit files to achieve this.
I’m working with a child theme.
Could you point me in the right direction?

TIA

Hugo Chan
Participant
#0

Hello
I just update the Newspaper Theme from 9.0 to 9.1 for my site.
after that, I check my site and I found that all the pages and posts are displayed error.
The pages and posts are created by WPBakery Page Builder.
Please check the link below:
https://www.screencast.com/t/IFp3H5Qg76E
https://www.screencast.com/t/0eiH8CsXmj8
Here, I need a help to fix this issue of my site.
Does the Newspaper Theme have a child theme?
Best regards
Hugo

Viju
tagDiv Member

I understand but i also made changes in child theme and i will install theme via File manager.
I uploaded zip file via File manager and extract there…
First i will rename, then zip, then upload, then delete old and extract there my folder with the same name of mysite.
Also i have 5 years experience.

Catalin
tagDiv Staff

Hello perfectbodymate,

Try to regenerate your thumbnails using the Force Regenerate or Force Regenerate thumbnails, switch the child theme to the main theme if you are using something like this, remove all of the untested plugins, update the theme, clear all the caches and check the results. If the problem is still there, please send us an email at contact@tagdiv.com with your log-in information (wp-admin) so we can further investigate it closer your setup page. Provide there the link to this topic so we can quickly identify you.

Thanks for your understanding!

Catalin
tagDiv Staff

Hello Valerio,

You should simply remove that container which contains the meta info from here -> https://www.screencast.com/t/eKlrUX8oY1J Also, if you want to overwrite in Child Theme, before please check the documentation from here -> https://forum.tagdiv.com/the-child-theme-support-tutorial/

Thanks for your understanding!

ghostmi
Participant
#0

hello, I should change the top of the version of the responsive theme, adding a small menu to the blogs of my network, which page should I change? can I put this change in the child theme?

thank you

Valerio
Participant
#0

Hi,
I would like to further customize the td_module_10 class: I want to get rid of the meta info.

I saw already the td_api_module, but it does not do what I would like to do. Can I create a new td_module_10.php in my child theme and do there my modifications?

jdodd4s
Participant
#0

Hello,

We’re running Newsmag 4.0 (child theme) and I would like to change the mobile menu from the 3×3 squares to the 3 bars.

Can someone please let me know how I can do this?

Thanks!

afterKa
Participant
#0

Hi, I’ve tried to add the column text in tag div composer but when I click Edit Content a fatal error displays as this https://drive.google.com/file/d/1_JeYiYBCo1Z9dGdrh3yzlI_tCUA9yi-5/view?usp=sharing
what to do?

(I’m working on child theme, configured as your guide).

Many thanks for your support

Calin
tagDiv Staff

Hi,

We recommend you to use the Child theme that came with our theme, please read our documentation/tutorials for Child theme support here: https://forum.tagdiv.com/the-child-theme-support-tutorial/
You will find there everything you can do with child theme.

Thank you for your understanding.

afterKa
Participant
#0

Hi, I have the magazine theme from about 6 months and only now I would like to configure a child theme using Child Theme Configurator. My question is, what matter with the existing my website? How can I copy all changes to the new Child theme? I tried to create the child theme but haven’t actived it because the home page looked like in the below screenshot.
-actual home page https://drive.google.com/file/d/1yCXqff_73rFBa7lfcN4rVdwtvhhANKuA/view?usp=sharing
-new child theme home page https://drive.google.com/file/d/1LrYN6G75lNWC16Q8jaiLn_5REYGYSCzj/view?usp=sharing

Thanks a lot
Joanna

Simion C.
tagDiv Staff

Hi,

There is a way, add the code directly in the theme stylesheet at the end of the existing code
https://www.screencast.com/t/b7HMffsEPg
Note that after a theme update the stylesheet will be replaced with the new one, so this will have to be done again.

There would be another way, more future proof. If you have a child theme copy the post template file in it
https://www.screencast.com/t/rcHqPOGA
You can modify it there safely, not worrying about losing this modification when updating the theme. A plus with this method in this case, will be that the views will not be loaded entirely instead of hidden. You could give it a try if you want.

If you don’t have a child theme, one is provided in the theme package and you can install it
https://forum.tagdiv.com/the-child-theme-support-tutorial/

Thanks

Simion C.
tagDiv Staff

Glad you solved it. I tested the child theme as well, by adding some CSS in the stylesheet. Once activated the stylesheet is loaded checking in the page source
https://www.screencast.com/t/arimOiWA8l
Also the CSS I used is working – https://www.screencast.com/t/FxAG3Rj5
So it should work for you as well, check in the page source to see if the child theme is loaded.
Also be sure to use valid CSS in the stylesheet. Test if it works in the main theme
https://www.screencast.com/t/2Ox1JPWGZ9x

Calin
tagDiv Staff

Hi,

Please try this code:
jQuery(document).ready(function ($) {
$(".td-slide-smart-list-figure a").children('img').unwrap();
});

Newspaper>Theme panel> Custom code>Custom Javascript
https://www.screencast.com/t/2fTYE3uuCw

Thank you.

Catalin
tagDiv Staff

Hello elawrenc01,

Before each update, you should make a full backup to your website to avoid losing all of your data. Also, this core file where is made this change cannot be overwritten in Child Theme. Please check our documentation from here -> https://forum.tagdiv.com/the-child-theme-support-tutorial/

Thanks for your understanding!

elawrenc01
tagDiv Member

After making that change, should that file be saved in the child theme?

DAF
tagDiv Member

Hi Simion,

Thanks, we were able to solve the issue.

One last question. We’ve updated the newspaper theme Version: 9.0.1 and we installed a child theme Newspaper 7 Child themeVersion: 7.7c

The child theme is active. The style.css sheet is not loading… tried to add some css but it doesn’t load! Also the code below is from the functions.php located in the child theme;

*/
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’, 1001);
function theme_enqueue_styles() {
wp_enqueue_style(‘td-theme’, get_template_directory_uri() . ‘/style.css’, ”, TD_THEME_VERSION, ‘all’ );
wp_enqueue_style(‘td-theme-child’, get_stylesheet_directory_uri() . ‘/style.css’, array(‘td-theme’), TD_THEME_VERSION . ‘c’, ‘all’ );

}

How can we make the child theme style sheet load properly ??

Thanks

Simion C.
tagDiv Staff

Hi,

Maybe you entered code in the theme files or theme panel, or through a child theme. Please check if that is the case. Remove any theme modifications or codes/scripts entered directly in the theme files or in the theme panel.
The theme package downloaded from themeforest does not contain any type of malware of adware, so it must have been picked up from a different source.

From what I can find online this trenced.com is a type of adware, you could search for more information about removing it

http://greatis.com/blog/howto/remove-trenced-com-completely.htm
https://malwaretips.com/blogs/remove-trenced-com/
https://www.fixyourbrowser.com/removal-instructions/popups/trenced-com/
https://virus-removal-guide.com/27493-trenced-com-pop-up-redirect-removal-instruction/

Also here is a guide about WordPress and website security, created by one of our users
https://forum.tagdiv.com/topic/tutorial-good-basic-security-practices/

Thanks

Simion C.
tagDiv Staff

Hi,


@Valerio
You could copy the mentioned file in the child theme (create similar directory path to the file) and make the modification there
https://forum.tagdiv.com/the-child-theme-support-tutorial/

Thanks

paperweight
tagDiv Member

Ah many thanks! I will use that in a child theme! Thanks so much~

Max Mile
Participant
#0

Hi everybody.
How can I make the excerpt’s ellipsis clickable and eventually replace them with other characters?

I tried both to add the function

function wpse_excerpt_more( $more ) {
    return ' <a href="'. get_permalink( get_the_ID() ) . '">' . __('Read More', 'your-text-domain') . '</a>';
}
add_filter( 'excerpt_more', 'wpse_excerpt_more' );

in the function.php file of the child theme, both to install the plugin Advanced Excerpt but it does not work.
Any suggestions?

Simion C.
tagDiv Staff

The reference to the post type would be in the main post file here
https://www.screencast.com/t/LeVkeYN4GbX
If you know what modifications are needed you can also make them in a child theme, that file is supported
https://forum.tagdiv.com/the-child-theme-support-tutorial/

Valerio
tagDiv Member

Hi Simion,
I am trying to do something very similar but I don’t like to mess up the original theme. Is there a way to achieve the same result but acting only on the child theme?

Thanks

paperweight
tagDiv Member

These posts don’t have uploaded videos to WordPress either. These all are either Podcasts with audio files or they are Youtube videos embedded in each post… so is there a quick fix to get these to show?

Is there a template file that is specifically for the Video format? If there is, then I can make it a child theme file and tweak it, but I’m unclear which file is responsible.

paperweight
tagDiv Member

Thank you, but I don’t understand why it would be erased if I update the Newspaper them? I don’t think I ever had this problem before when I updated a theme… if it truly is removed, then it’s best for me to do a header.php in a Child theme.

Viewing 25 results - 7,726 through 7,750 (of 12,866 total)