I have the same problem on my website as well. http://www.learnjazzstandards.com
I can also confirm my site
http://www.learnjazzstandards.com has the same error.
Google says the amp pages are not valid.
The text inside tag ‘style amp-custom’ contains ‘CSS !important’, which is disallowed.
I would also like to add my point. I would love to use your new tagdiv composer, the only issue I have is that when enabled alongside the VC one, all my pages images get skewed. Would be nice to be able to enable it only 1 page at a time, so I can slowly transition my pages over to the new and better plugin.
I want to use your plugin, but currently it seems its an all or nothing solution.
I noticed this when I installed the tagDiv Composer. I just had to uninstall that plugin. It seems their new builder breaks a lot of my site at least.
Do we have timeline on when this will get be fixed. This is an important feature to have. Or if there is something I can do “hack it” to work that would be great.
Actually just saw your update, I will test this out right away and update.
With your pagebuilder, can I replicate that same experience / style? Please I would download and try it, but the GitHub link in the forum is broken.
Right now I had to just hard code pictures and links, but that is not a good long-term update.
I also see that there is a VC update available. Maybe you can push that sooner than later? Not sure when you get access.
I think that I am having a similar issue on my site: http://www.learnjazzstandards.com. If you scroll down the page to the section that has latest posts and latest podcasts, they are showing the same exact posts, and not filtering based on the categories I selected in Visual Composer. A weird issue I notice, is that it filters correctly if I am logged into the site, but not if you are viewing the site not logged in.
It looks like this happened just recently on the newest update.
Hi Catalin,
I actually followed that guide to come to my current conclusion. When I enable “tagDiv Mobile Theme” I can no longer create new pages, when I disable it, I can create new pages. So not sure what is going on.
I have also replaced my authentication keys as well to see if that would fix it. (but no)
Hey Gllvancn,
if you are still looking its a pretty simple change. Look in:
/themes/Newspaper/includes/wp_booster/td_data_source.php
at line 376
just modify this function:
/**
* used by the ajax search feature
* @param $search_string
* @return WP_Query
*/
static function &get_wp_query_search($search_string) {
$args = array(
's' => $search_string,
'post_type' => array('post', 'page'),
'posts_per_page' => 4,
'post_status' => 'publish'
);
$td_query = new WP_Query($args);
return $td_query;
}
I could not figure out how to overide it in my functions, so I will have to change it after every update, but I needed a way to remove all the “hidden” products in woo-commerce.
Hi Catalin,
I deleted my facebook app, and recreated another following the steps exactly. I have also verified that both the visual composer and social counter are up to date.
I do not have a CDN, and I cleared the cache. It still is not working. I have sent you crendtials to the email contact@tagdiv.com.
Thanks,
When I create a user on the backend, it sends the same message.
Username: jkellerer@xxx.edu To set your password, visit the following address: https://ljsbeta.learnjazzstandards.com/wp-login.php
Disabled that plugin and still got the same user email:
Username: jkellerer@xxx.edu To set your password, visit the following address: https://ljsbeta.learnjazzstandards.com/wp-login.php
Hi Bogdan,
I am running the most recent update: 6.6.5.
Please feel free to test on ljsbeta.learnjazzstandards.com,
but this is the message new users get:
Username: jkellerer@xxxx.org To set your password, visit the following address: https://ljsbeta.learnjazzstandards.com/ljslogin
I have no login plugins. I do have a security plugin that changes the login page to ljslogin for security purposes. (iThemes Security)
So I created a new single_template based on the single_template_2.php file and the loop-single-2.php.
I am able to get it working. Basically I am trying to get a static do_shortcode(‘[ td_block_video_youtube playlist_title=”My YouYube Playlist” playlist_yt=”8hAwUt8-G34, F9S49fUqbVQ, TUdVeZ1pbuc” playlist_auto_play=”0″ ]’) with the shortcode directly under where the content is echo.
Jumping down to the get_content portion of the loop this is my code:
<?php echo $td_mod_single->get_content();
$vidarray['playlist_title'] = $td_mod_single->post->post_title;
$vidarray['playlist_yt'] = 'lxYtiIHcpVg, 5pVxWdnInWY, 2zUANqLVbhM, Q0R_K3QSb6o, 2yCfV9qL42k';
$vidarray['playlist_auto_play'] = 0;
videoSC = '[vc_row][vc_column][td_block_video_youtube playlist_title="TITLE" playlist_yt="'.$vidarray['playlist_yt'].'" playlist_auto_play="0"][/vc_column][/vc_row]';
echo do_shortcode($videoSC);
?>