- Apitd_api_top_bar_template::update_key
- Apitd_api_top_bar_template::update
- Apitd_api_single_template::update_key
- Apitd_api_single_template::update
- Apitd_api_footer_template::update_key
- Apitd_api_footer_template::update
- Apitd_api_smart_list::update_key
- Apitd_api_smart_list::update
- Apitd_api_thumb::update_key
- Apitd_api_thumb::update
- Apitd_api_category_top_posts_style::update_key
- Apitd_api_category_top_posts_style::update
- Apitd_api_category_template::update_key
- Apitd_api_category_template::update
- Apitd_api_module::update_key
- Apitd_api_module::update
- Apitd_api_block::update_key
- Apitd_api_block::update
- Apitd_api_header_style::update_key
- Apitd_api_header_style::update
I really appreciated your team once for the great template.
But you people totally screwed it up by bringing tagdiv composer which supports only pages. My blog consists of only posts which is getting conflicted with td composer.
Whats is the use when your plugin wont support posts, I have only 2-3 pages for those why I will then go for your plugin rather I will use only visual composer.
I have to download the full template every time the version gets updated and update my visual composer thats again a manual update I have to do.
Hello,
I’m using a custom post type (like your example td_books…) and I would have the possibility to add a label:
as in WP backend clicking on “Posts” the 2nd level menu displays “All posts”, in my CPT named “Giocatori” on the 2nd level menu I have the same “Giocatori”, but I need to have “Tutti i giocatori”.
How can I do?
Thanks
Here is the code I’m using inside functions.php:
// to register Custom Post Types and taxonomies, the use of the init hook is required!
add_action(‘init’, ‘custom_post_type_init’);
function custom_post_type_init() {
/**
* add the td_book custom post type
* https://codex.wordpress.org/Function_Reference/register_post_type
*/
$args = array(
‘public’ => true,
‘label’ => ‘Giocatori’,
‘supports’ => array( // here we specify what the taxonomy supports
‘title’,
‘editor’,
‘thumbnail’,
‘excerpt’,
‘comments’
),
//’taxonomies’ => array(‘category’) // if you also want to add an existing taxonomy like categories or tags, you can add them here
);
register_post_type( ‘giocatori’, $args );
/**
* Add new taxonomy, make it hierarchical (like categories) and associate it to the td_books Custom Post Type
* https://codex.wordpress.org/Function_Reference/register_taxonomy
*/
$labels = array(
‘name’ => _x( ‘Ruolo’, ‘taxonomy general name’ ),
‘singular_name’ => _x( ‘Ruolo’, ‘taxonomy singular name’ ),
‘search_items’ => __( ‘Cerca ruoli’ ),
‘all_items’ => __( ‘Tutti i ruoli’ ),
‘parent_item’ => __( ‘Ruolo genitore’ ),
‘parent_item_colon’ => __( ‘Ruolo genitore:’ ),
‘edit_item’ => __( ‘Modifica ruolo’ ),
‘update_item’ => __( ‘Aggiorna ruolo’ ),
‘add_new_item’ => __( ‘Aggiungi nuovo ruolo’ ),
‘new_item_name’ => __( ‘Nome nuovo ruolo’ ),
‘menu_name’ => __( ‘Ruolo’ ),
);
$args = array(
‘hierarchical’ => true,
‘labels’ => $labels,
‘show_ui’ => true,
‘show_admin_column’ => true,
‘query_var’ => true,
‘rewrite’ => array( ‘slug’ => ‘ruolo’ ),
);
register_taxonomy( ‘ruolo’, array(‘giocatori’), $args );
/**
* Add new taxonomy, NOT hierarchical (like tags) and associate it to the td_books Custom Post Type
* https://codex.wordpress.org/Function_Reference/register_taxonomy
*/
$labels = array(
‘name’ => _x( ‘Tag’, ‘taxonomy general name’ ),
‘singular_name’ => _x( ‘Tag’, ‘taxonomy singular name’ ),
‘search_items’ => __( ‘Cerca tag’ ),
‘popular_items’ => __( ‘Tag popolari’ ),
‘all_items’ => __( ‘Tutti i tag’ ),
‘parent_item’ => null,
‘parent_item_colon’ => null,
‘edit_item’ => __( ‘Modifica tag’ ),
‘update_item’ => __( ‘Aggiorna tag’ ),
‘add_new_item’ => __( ‘Aggiungi nuovo tag’ ),
‘new_item_name’ => __( ‘Nome nuovo tag’ ),
‘separate_items_with_commas’ => __( ‘Separa i tag con delle virgole’ ),
‘add_or_remove_items’ => __( ‘Aggiungi o rimuovi tag’ ),
‘choose_from_most_used’ => __( ‘Scegli un tag tra quelli più utilizzati’ ),
‘not_found’ => __( ‘Nessun tag trovato.’ ),
‘menu_name’ => __( ‘Tag’ ),
);
$args = array(
‘hierarchical’ => false,
‘labels’ => $labels,
‘show_ui’ => true,
‘show_admin_column’ => true,
‘update_count_callback’ => ‘_update_post_term_count’,
‘query_var’ => true,
‘rewrite’ => array( ‘slug’ => ‘tag’ ),
);
register_taxonomy( ‘tag’, ‘giocatori’, $args );
}
Hello,
Unfortunately a child theme is not update proof. Sorry. Please read this topic: https://forum.tagdiv.com/topic/setting-up-child-theme/
Thank you!
no, I meant another. in Russia, popular other social networks to share, for example, Vkontakte or classmates.
Look, I need to insert this script
<script src=”//yastatic.net/es5-shims/0.0.2/es5-shims.min.js”></script>
<script src=”//yastatic.net/share2/share.js”></script>
<div class=”ya-share2″ data-services=”collections,vkontakte,facebook,odnoklassniki,moimir”></div>
Before update 8.5 I put this script as you advised me in the screenshot https://www.screencast.com/t/hZqp5dTnl
worked as a script like so:
<div class=”td-default-sharing”><script src=”//yastatic.net/es5-shims/0.0.2/es5-shims.min.js”></script>
<script src=”//yastatic.net/share2/share.js” async=”async”></script>
<div class=”ya-share2″ data-services=”vkontakte,odnoklassniki,moimir,blogger,lj,telegram” data-counter=””></div>
</div>
That is, your button sharing was with mine. Now, those recommendations that were in your screenshot do not work after the upgrade.
That is, I insert the code <div class=”td-default-sharing”><script src=”//yastatic.net/es5-shims/0.0.2/es5-shims.min.js”></script>
<script src=”//yastatic.net/share2/share.js” async=”async”></script>
<div class=”ya-share2″ data-services=”vkontakte,odnoklassniki,moimir,blogger,lj,telegram” data-counter=””></div>
</div>
but my share buttons do not appear along with your
Hello,
Please always make a back-up of your install before any at all decision.
Then use this guide: https://forum.tagdiv.com/how-to-update-the-theme-2/
Thank you!
Nope. I reverted my site back to 8.2. I had other issues on the site as well. The menu is messed up. I was playing in the theme dashboard and wanted to see what the social icons looked like in the menu — they placed under the menu with search. I toggled that feature off but it refused to remove it. I cleared cache and nothing worked. I did a back up of my site just before adding the update.
Problem not fixed is the short answer.
Hello,
Please note the support hours and the days off we had due to the national day celebration.
We are now back in business.
Please use this guide: https://forum.tagdiv.com/how-to-update-the-theme-2/
Use options A or B as they are the safest methods of updating.
Thank you!
Hello pawmeal,
1)You should update both themes. All the required files come bundled with the latest theme’s packet.
2)To be safe, you should make a full theme’s backup to avoid losing to data.
3)Yes, there are the steps which have to be followed for theme updating. Also, you should install the theme via FTP way because this is the surest method in this case.
Hope this helps!
Thanks for the message!
Just updated my Newspaper theme on my main site AND installed it on a brand new dummy site.
On the main site I see as available options for the ROW layout:
1/1 .. 2/3 + 1/3 .. 1/3 + 2/3 .. 1/3 + 1/3 + 1/3
Then below that, Row stretch, Row ID and Extra Class
Nothing else beyond that…which has ALWAYS been the case with that main site even before I ever updated the theme.
Thing is, on my dummy site, I see a whole lot more.
Sooooo, Was it Always supposed to have shown those other options and items? Or were these new things introduced with the new update?
‘and I how do I fix this?
Thanks
Hello all,
Unfortunately, it seems to be a problem with the Mobile theme when the multi-purpose plugin is activated, sorry! Please keep in mind that we will deeper investigate this case and we will consider to fix it in our future update, as soon as possible.
Thanks for the message!
Hi,
The theme uses the default WordPress login functionality, so most likely this is happening on a default theme as well. Please try as a quick test to see if deactivating all plugins except theme plugins has any effect. Maybe a plugin is causing the issue.
The default behaviour is to redirect to the homepage after the user logs out.
There are some issues with the child theme functionality after the latest theme update. We are working to provide a solution as soon as possible. Sorry for this inconvenience.
Thanks
Hi,
Please try and deactivate the tagDiv composer plugin, from the plugins section. This editor is activated by default when the theme is updated or installed. Then check the results, if the issue is fixed.
Thanks
Hello,
the disappearing sidebars issue is a well known WordPress issue and has no tie to the actual theme update. IF you copied the theme next to the old one, you will have no sidebars. Your own sidebars will still be in the old theme version. THat is why it is not recommended to have 2 versions of the theme installed separately.
You should replace the theme files, not copy them net to each other.
Another reason for disappearing widgets is the sidebar names. If you use special characters in the sidebar names, then on the first major change such as a theme change or update, wordpress will strip the sidebars.
For the moment there is a problem between the mobile theme and the multi purpose plugin so we will release a fix as soon as possible.
Sorry for the inconvenience.
Hello,
I have tested the comments for pages and it works fine on my end. The only template that will not show comments is the page builder + latest articles The other templates will show the comments.
What version did you update from?
Thank you!
Hi,
From what I can see at the moment, the images are displayed fine on the website
– https://www.screencast.com/t/reGFPNZvu
There are no issues on the homepage, post pages, category pages etc.
The latest update includes the latest version of Visual composer plugin (version 5.4.5). Please deactivate and remove the current Visual composer plugin, then install and activate the one from the theme package
– https://forum.tagdiv.com/how-to-update-visual-composer-plugin/
Thanks
Hello,
In order to update to the latest version, please use this guide: https://forum.tagdiv.com/how-to-update-the-theme-2/
Thank you!
Hi,
Code entered in the theme panel dedicated sections should not be lost after a theme update. The theme panel custom code sections together with the child theme are considered safe ways to customize the theme.
A child theme is provided in the theme package, here is a guide
– https://forum.tagdiv.com/the-child-theme-support-tutorial/
Thanks
Hi,
Please try and reinstall the theme by FTP
– https://forum.tagdiv.com/how-to-update-the-theme-2/
Check if the tagDiv composer and the multi-purpose plugin are active in the plugins section after updating. They should be activated by default.
Let us know if you still have a problem.
Thanks
Hi,
The issue with the mobile theme is currently being investigated. A solution will be provided as soon as possible. Sorry for any inconvenience caused.
Regarding the other issue, maybe the theme did not update properly. The most recommended method of updating is by FTP
– https://forum.tagdiv.com/how-to-update-the-theme-2/
Thanks
Hello,
The child theme has nothing to do with the settings. A child theme is used for code modifications where you go in and hard-code changes in the theme files. If you just make theme settings, the child theme is useless.
Please create a full back-up of your install and then update your theme using this guide: https://forum.tagdiv.com/how-to-update-the-theme-2/
Your settings should be safe.
Thanks.
Hello ronnie,
It seems to be strange what happened on your website after the new update, sorry! Make sure that you have correctly made the theme update via FTP way, clear all the caches and also, if you are using some untested plugins, try to disable all of them, leave just to active only the plugins that come bundled with the theme and rule out any conflicting plugins. If the problem is still there, you should provide your website URL so we can take a closer look at it. Also, provide some useful screenshots with the problem.
Thanks for the message!
The main problem why so many people report this is because they do not read the docs or update their themes and plugin. Please read this guide and make sure you follow the instructions properly and fill out all fields: https://forum.tagdiv.com/tagdiv-social-counter-tutorial-2/
Please clear all caching afterwards. If you use an older version of the theme or plugin, please update the theme and disable and delete your current social counter plugin and install it again from the theme panel plugins section
Thank you!
Hello julianpeaks,
Notice that with new purpose plugin offers you a lot of ways to customize your page. Unfortunately, the post content cannot be enlarged with this plugin. It is available only for pages. I’m sorry if you are not satisfied with our new update but I do not understand why. The rest of the theme content cannot be edited or enlarged because this plugin is available only for pages and not for post pages, sorry!
Thanks for your understanding!