Search Results for 'child theme'

    No search results were found in Documentation!

Results from the Forum
jonybigude
Participant
Requests - topic
#0

I would like to share with everyone a list with some requests that I would like to see in future updates. This theme is in every aspect amazing but there is still room for improvement. Here it goes:

* WYSIWYG on the ads manager: It is hard and time consuming to put ads there, especially if you are making a website to a customer
* Sidebar manager: Would be nice to be able to create sidebars easier. Right now one can only do that when editing/creating a page
* Placing sidebars on the top of the page: The main purpose of this is of course to be able to place ads on the very top of the page. I had to edit the php of my child theme for this. Would be amazing if you could include this in your ad manager
* Custom blocks: I don’t know if this is possible but it would be a dream to be able to easily build a block. The templates you offer are great but some customers have really specific tastes and in my case I had to customize php on two blocks

Feel free to leave your comments and/or requests. Sure does not mean we are demanding these features but it can be a great way for tagdiv to see what we are searching for.

Cheers!

Bogdan B.
tagDiv Staff

Hello sejpost,

1) You could do that using a custom CSS but be carefull because it will stretch the white container over your content: http://screencast.com/t/30mgfGny

.block-mega-child-cats {
overflow-x: visible;
overflow-y: visible;
max-height: 400px;}

2) The ‘newspaper’ mega menu was styled differently from the ‘newsmag’ one. Unfortunately there is no ption for this in the theme panel so you need a bit of css to change the appearance, but it requires a lot of modification as other elements are affected by the position of the sub-category list. You can start by targeting the td_mega_menu_sub_cats class and go from there.

3)You can read here how to create a custom ad and then you can insert your code in the theme files:http://screencast.com/t/vp4z0dM0W4J7https://forum.tagdiv.com/how-to-insert-ads-in-custom-areas-of-the-website/

Unfortunately we cannot offer custom work as we work hard on the development, updates, fixes and support.

Thank you!

hasgerdas
tagDiv Member

Hi all,
Here’s what I did step by step to add a custom Whatsapp button:

1. Created a child theme, added an includes/module directory
2. Copied td_module_single.php file from theme’s original location (/wp-content/themes/Newspaper/includes/modules/td_module_single.php)
3. Added FA awesome menu plugin
4. I wanted to keep pinterest but you can delete as well. So, I kept pinterest and below that, I added the following code (before closing div):

<i class=”fa fa-whatsapp fa-lg”></i>

5. Go to custom css area of your theme panel, and add these:

.td-social-whatsapp {
background-color: #60b82d;
}

.td-social-whatsapp .td-icon-whatsapp {
font-size: 24px;
position: relative;
top: 2px;
left: 1px;
}

.td-social-pinterest {
margin-right:8px;
}


@media
(min-width: 787px){
.td-social-whatsapp {
display: none !important;
}

6. Voila! Now you see Whatsapp icon only on tablets and mobile – don’t worry if you don’t see it on your desktop.

Good luck

Bogdan B.
tagDiv Staff

Hello steventsakanikas,

Your problem is font related. Those symbols are placed as characters not images. It seems like the font file doesn’t load properly. You need to check if you have any errors in your console. Also if you use a child theme make sure it is set up properly.
This could also be plugin related. Try to disable them (except visual composer) and see if the problem is still there.

Thank you.

Bogdan B.
tagDiv Staff

Hello,

Please send your request via email at contact@tagdiv.com and we will send it to you. Unfortunately if you plan on updating to version 6, all of your modifications will have to be remade as version 6 is a completely different theme (child theme is different as well).
You can read more about updating here: https://forum.tagdiv.com/how-to-update-the-theme-2/

Thank you.

sejpost
Participant
#0

Normally when there is an update of a theme, it appears in the WP admin area and I can just click it to install, etc. I purchased Newspaper 6 about a couple months ago and there have been 1-2 updates.

Will I be able to install it from the WP admin dashboard, or do I have to download the zip file and then upload it to the admin and then install it?

Lastly, I haven’t modified any child themes, etc, so will there be any errors created because of updating the theme? We had an issue with the featured images of posts not showing up and we had to run a ‘featured post plugin’. I would hate to have to redo that.

Thanks guys.

iip
Participant
#0

Is it possible to get a download link to version 4.2.2? I’ve inherited a project that is using Newspaper 4.2.2 without a child theme (the original theme files were edited) and need to do some cleanup, including moving all the changes to a child theme and (determining the upgrade path to 6+).

Thanks,
Nathan

websystems
tagDiv Member

Here is my .htaccess(chmod 755):

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteRule ^other/(.*) /wp-includes/$1?putyo_hide_my_wp=pass [QSA,L]
RewriteRule ^file/(.*) /wp-content/uploads/$1?putyo_hide_my_wp=pass [QSA,L]
RewriteRule ^ext/(.*) /wp-content/plugins/$1?putyo_hide_my_wp=pass [QSA,L]
RewriteRule ^skin/main\.css //index.php?style_wrapper=1&putyo_hide_my_wp=pass [QSA,L]
RewriteRule ^skin/style.css /nothing_404_404?putyo_hide_my_wp=pass [QSA,L]
RewriteRule ^skin/(.*) /wp-content/themes/Newspaper-child/$1?putyo_hide_my_wp=pass [QSA,L]
RewriteRule ^Newspaper/(.*) /wp-content/themes/Newspaper/$1?putyo_hide_my_wp=pass [QSA,L]
RewriteRule ^skin_main/(.*) /wp-content/themes/Newspaper/$1?putyo_hide_my_wp=pass [QSA,L]
RewriteRule ^ajax /wp-admin/admin-ajax.php?putyo_hide_my_wp=pass [QSA,L]
RewriteRule ^(((wp-content|wp-includes)/([A-Za-z0-9\-\_\/]*))|(wp-admin/(!network\/?)([A-Za-z0-9\-\_\/]+)))(\.txt|/)$ /nothing_404_404?putyo_hide_my_wp=pass [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

Pagination work’s fine with categories and tags, but in main section it redirect to index…

Alin [tagDiv]
tagDiv Staff

Hi,

Please try this custom css in Theme Panel > Custom Css for the Newsticker block – http://screencast.com/t/UouxLgnV

.home .td-trending-style2 {
margin-bottom: 0 !important;
}
.home .td-main-page-wrap > .td-container > .td-pb-row:first-child > .wpb_column > .wpb_wrapper > .td_block_trending_now {
margin-top: -48px;
}

And this one for Big Grid – http://screencast.com/t/x4ghHL0iJ

.home .td_block_big_grid_7 {
padding-bottom: 0;
}

Thanks!

Bogdan B.
tagDiv Staff

Hello,

You can update the theme directly to 6.5 by using this guide – https://forum.tagdiv.com/how-to-update-the-theme-2/ and also update the plugins that come with the theme files from the /plugins folder. If you use a child theme, you have to update it as well because the old files modifications or custom css will not work in the version 6.
If you have custom modification to the theme’s files you will need to re-add them as when you update the theme these files will be overwritten, but the styling options you’ve set in the WordPress Theme or settings should not be affected.
Please note that Newspaper 6 is practically a new theme and the old file customization and custom css will not work, you need to adjust it to this theme version.
We also recommend doing a back-up.
You can check the official documentation – https://codex.wordpress.org/WordPress_Backups

I hope this helps!
Thank you!

Alin [tagDiv]
tagDiv Staff

Hi,

It cannot be edited via child theme, you will have to make this change in the main theme, sorry! These are the files that can be edited via child themehttps://forum.tagdiv.com/the-child-theme-support-tutorial/

Thanks!

arvindk
tagDiv Member

As it is confirmed it is problem with Jetpack + Newspaper theme, I fixed it temporarily by placing the following css code in my style sheet:

.post .td_smart_list_2 .td-sml-description p:first-child {
display: none;
}

Alin [tagDiv]
tagDiv Staff

Hi,

You can update via FTP, there is a video tutorial in the documentation – https://forum.tagdiv.com/how-to-update-the-theme-2/ There should not be any problems with child theme customizations as we did not change html, just added fixes and new features as you can check the update_log file.

Thanks!

adriatikxhelo8
tagDiv Member

Hi again, i already hired someone else to install my child theme. Thnx for your supoort.

simchris
tagDiv Member

Basically, just change it.

Be sure the theme is not active; rename theme folder (generally you would do this on your PC/Mac prior to upload via FTP).

For example we change the name of our folder to our news network name.

Just change it from /Newspaper/ to something like /StyleBaron/ or whatever you website name happens to be — be careful NOT to name it the same as a category, post, plugin name, or WordPress function, just to be safe — like, don’t name it VisualComposer for example, or JetPack if you’re using jetpack, is tempting fate! hypehen and underlines can be used, like my-cool-mag … although I’d likely limit to 2 words, no reason you can’t do more.

If using a child theme you likely might need to check the style.css to make sure it points to the right place. I don’t use child themes, so if you don’t then it won’t apply to you either.

There is also an awesome resource called Google for many things like this — WP has been around over 10 years, so this is a very common question you can often answer yourself vs waiting for a reply here — not that anything wrong with that, or looking for pointers here from others who have already done the deed. 🙂

(pardon typos; this keyboard starting to die as is my brain …)

  • This reply was modified 10 years by simchris.
AyaR
tagDiv Member

Thanks! Can the wp_booster edited through the child theme?

Andrei L.
tagDiv Member

Hi

By installing the child theme as it is in /code folder the parent theme functionality won’t be affected because all theme’s files are in main theme. The child theme become useful if you want to customize a post template for example, you will move the required files and the changes won’t be affected by futures updates. In fact this is the point of a child theme, to keep the customization even if the main theme it’s updated. But this is not always valid, because once in a while the child theme it’s also updated, or if the main theme pass through a major update it’s possible that some customizations not work well anymore. There is no reason to install the child theme unless if you decide to customize the parent theme. Note that customizing a theme involve good coding skills otherwise its functionality will be damaged rather than improved.

You can check in documentation which file can be edited with child theme: https://forum.tagdiv.com/the-child-theme-support-tutorial/

Hope this help.

Thanks for the message!

  • This reply was modified 10 years by Andrei L..
  • This reply was modified 10 years by Andrei L..
jonybigude
tagDiv Member

Oh… will do! I do know that I should do a backup of the site but what do you consider to be the best way to update? I use a child theme and did all my customizations via child theme. Do I need to worry about correcting CSS, settings and so on?

Bogdan B.
tagDiv Staff

Hello gabrielgiraldes,

Please make sure you update the theme properly using this guide (all the steps how to update from version 4) – https://forum.tagdiv.com/how-to-update-the-theme-2/ and also update the plugins that come with the theme files from the /plugins folder. Also if you use the child theme, you have to update it as the old files modifications or custom css will not work in the version 6.
If you have custom modification to the theme’s files you will need to re-add them as when you update the theme these files will be overwritten, but the the styling options you’ve set in the WordPress Theme Customize or settings should not be affected.
For more information on how to backup check the official documentation – https://codex.wordpress.org/WordPress_Backups

Thank you!

adriatikxhelo8
Participant
#0

Dear people,

I had bought the theme 1 week ago and put it online some days ago ( http://www.storypickers.com )

I installed the theme excatly as it is in the demo (with their content inside) and made some modification
like menus, category, new pages, add new posts and these stuff.

Now, i have decided to install the child theme (who already it is in the theme folder) butt i have done to much modification to the currect theme and made like 20 new posts.
– I’m wondering if i install the child theme will my customizations and posts dissapear?
– Will my sitemap, meta tag and all the seo i had done delete it?

Please, answear these two questions and please give me the instructions how to install the child theme?

simchris
tagDiv Member

Hi
you may find the official ‘codex’ docs for WordPress super useful on stuff like this as an educational tool but also gateway to other info… put another way .. unless you KNOW you need to use child theme, then you don’t 🙂

See:
https://codex.wordpress.org/Child_Themes

tip: you can often do google search like :: wordpress codex child themes
or similar to get right to docs!

adriatikxhelo8
tagDiv Member

Thnx a lot for your information.
What if i want to keep all my posts/modification and all stuff which are in the web site just like they are,what should i do? Still i dont need a child theme? Or i can make a back uo at my host server?
P.s: Sorry for my stupid questions but im very new in this world

simchris
tagDiv Member

No reason to install the Child theme. Some people use them to hack theme settings in hopes they won’t have to redo edits on theme update; however that is a 50/50 proposition since often major theme updates mean changing child theme as well. If you’re using the built-in functions and control panel and visual layout, without needing to “hack’ things for some custom reason, you don’t need to use the child theme. It’s also a CSS redirect, which Google actually doesn’t like, but WordPress has this as a core ‘feature.’

Not sure that helps or not — but upshot: don’t use it unless you have a reason to!

adriatikxhelo8
Participant
#0

Hello.

I just bought this theme 1 week ago, i installed the theme with their content inside.
I delete it all the posts were them and made a little modification for the categories, logo and this stuff.
I already made 10 posts and the web site is online ( http://www.storypickers.com )

These days i see in this forum and some other people suggest me to install the child theme (which is already at your newspaper folder?)

So i have 3 questions:
1) Why i have to install the childe theme?
2) Can i keep the theme just like it is, like i had installed with yours content inside?
3) If i install the child theme, will my posts and everything i have done delete it?

Waiting for you reply, wish to you a nice day!

Viewing 25 results - 11,676 through 11,700 (of 12,866 total)