Hi Lucian, I have received the updated version of the slider. Thank you so much.
Best of Regards!!
Hi Lucian,
I have mailed the purchase code and site url.
Thanks..
Hi Lucian,
I have requested an updated slider revolution through email as stated above.
Thank you very much.
Thank you for all your help. Do you have an estimate as to when the next Newsmag update is?
So I guess the next theme update will have slider revolution v5, right?
Also, I don’t know if this is allowed or not but can the example-zips folder inside the revolution slider download folder from codecanyon be provided? I would like to experiment with some pre-made templates of the slider.
Thanks!!
Sometimes it creates unexpected problems to manually change things in phpMyAdmin. I always use ‘Duplicator‘ plugin to move my site. It handles url changes in database and file transfers.
Thank you for your cooperation. I will wait for the next release 🙂
Custom page template – Copy page.php to child theme. Rename page.php to page-{page_slug}.php (Documentation).
Custom CPT Template – Copy single.php to child theme. Rename to single-{post_type}.php (Documentation)
I will investigate this and I will try to add a class_exists for the three classes in the next version (1-2 weeks) for the following classes td_menu, td_tagdiv_walker_nav_menu, td_nav_menu_edit_walker . I did not managed to fully understand the consequences of such a change now because we are all replying to support requests 🙂 but I think it will allow full menu customization. (or if we include the files with locate template – that should also work).
Any update on this now that v2 is out? Can we alter files in wp_booster folder via child theme or the API?
That is strange. Why would you not add login/logout in mobile. It’s a must have (even ‘must have’ is an understatement). Registered user interactions is like a backbone for a lot of sites. I will make do with the css fix but is this being considered for the future?
Hi Lucian,
I looked at it and the HTML structure is exactly the same for both post and custom post type but it still doesn’t work on the CPT.


Actually if you have a title field in your widget, it automatically appends its value to the widget block title. So to test this I changed the parameter name from ‘custom_title’ to ‘title’ in get_map_block_array() (td_config.php) and the titles showed in the backend.

The JS used in wp-admin – widjets.js
var title = $('input[id*="-title"]', widget).val() || '';
if ( title ) {
title = ': ' + title.replace(/<[^<>]+>/g, '').replace(/</g, '<').replace(/>/g, '>');
}
$(widget).children('.widget-top').children('.widget-title').children()
.children('.in-widget-title').html(title);
@gregy1403 Would love to know if you have come up with a solution
Thank you for replying. I understand it works only on posts, but where is the code that makes it to only work on posts? I would like to change that in the core theme. In what file is it determined if the single page is a post, custom post type or a page.
Since I could use this too I decided to give it a try. I was able to get custom taxonomy names in the ajax filter dropdown but I was unable to filter the block posts after the taxonomy selection from the dropdown. Maybe a little direction from tagDiv as to what changes are required in td-data_source/wp_query to make the filter work.
if they are the built in categories that come with the wordpress installation, you can use them in the drop own filter ajax filter with the custom post type.
are you using custom taxonomies or built in categories with the cpt?
Would love to know what changes have you made to include CPT 🙂
The function get_next_prev_posts() used for next/prev links on single post pages is in includes/wp_booster/td_module_single_base.php line ~ 639. You play with that and alter it according to what you want.
Note: you will be changing a core file and it will be overwritten on the next update. So you need to document your changes
I understand you have a lot of requests and implementing each is not possible. For now, I have just edited td_block_authors.php and added $get_users_array['number'] = '5'; in the code 🙂
Glad to be of some help 🙂
Hi @Andrei,
Thanks for replying.
If I want the top 5 authors out of all my registered users and sort them according to post_count, then that won’t we possible with the method you have suggested above.
If you can add the ‘role’ argument too as a setting that would be awesome. May be as a select box using wp_dropdown_roles function?
Thanks a lot for your help
Thank you for your support. Looking forward to the developments.
Locate template should work. I have made changes to td_ajax registration function as I needed a check to deny spaces in username and a minimum character limit. I made changes to td_data_source to include CPT in search and wp_query. Keeping track of all these core changes is a big headache. Doing it like how Woocommerce does would be very helpful to developers who need to take the theme a step further.
P.S. – Support for CPTs is of the utmost importance as of now. Are you guys working on it?
And thank you for pointing out WinMerge. Looks super useful.
