That code worked, thank you so much Calin.
Hi Calin, thanks for your help,
I implemented the fix, but it does not work on Category pages or post pages. Here is an example page with the fix not working. https://www.liberatedstocktrader.com/category/charts/
Here is a screenshot
HI Annamaria,
For further information, if a column is marked as sticky, it’s good in Desktop, landscape, and disappears anyway for mobile. But in portrait, it stays, even if I disable sticky. It ends up having a ghosting effect, where it hovers over/under the content. I have 3 sites with newspaper, and it happens on all of them.
Its quite a serious problem. Any idea when it will be fixed.
thanks
HI Calin, try this page. https://www.stockchartpro.com/dragonfly-doji/
You can see the modal popup in mobile view. “Candle Patterns Main Menu” Button.
27 headings
<h1>[Missing heading]
<h2>[Missing heading]
<h3>Candle Patterns Main Menu
<h1>Dragonfly Doji Candles
That does not fix it at all, nor is it a workaround. Its the Button Trigger that is H3 not the Title of the modal menu.
HI Anamaria, the Model popup is fixed as a H3 Tag. Is there a way to change it to a DIV? I have it as a menu at the top on mobile, and the document then starts with an H3, which is not good for SEO. Thanks
Hi Anamaria,
Is it possible to get two of the table of contents to work together on the same page?
Hi Anamaria, I fixed it. I had two instances of the TOC on the same page, one showing only for mobile view, and one showing for full width, it appears they are clashing with each other.
Hi Anamaria
I disabled Easy Table of Contents, Rank Math SEO, and Siteground Central, and flushed the cache. The problem persists.
What next?
Thanks
Great, can we also ensure it has a default behavior, such as closed or open by default, which we can select?
Thanks a lot.
Hi Anamaria, any news on this request please?
I support this request, please let us know when done. thanks
I found the problem, WP Quiz Plugin, fixed, thanks
Hi Simion, not there is nothing in those locations. I also have no fb plugins. Is there a way to track where the code comes from. I did a text search on the site at filesystem but found nothing.
Hi Calin, my server has 128 MB/request WP memory limit.
Can we please test compatibility with Wishlist Member for the next release of Cloud Library.
In your solution above I tried it and it did not work for me, I copied the code from loop-single-1 into loop single 13 but that broke the loop single 13 template. I do not want to overwrite single-1 as it is my core template for posts.
Hi Calin, I read this post a few months ago and implemented your advice and it worked perfectly. Unfortunately, Cloud Library clashes with wishlist member.
This is the description of the issue.
******************
when my visitors register as a new member they always get the same error message
The username you chose already exists. Please try another one.
However, the user name does not exist. The new user is actually created and they are already logged in. If I register, I get this message but if I click to another page the new user account is created and logged in and everything is fine.
It may be that somehow the submit of the new member is happening twice therefor triggering on the second submit that the user account is already created.
When I disable cloud library, everything works again.
So the question is – can you fix it? Or is there a workaround to getting reviews at the top of posts without cloud library?
Thanks
Barry
works great, thanks Alin
here is the file that works perfectly – if you do not use buddypress.
<?php
/* —————————————————————————-
the default page template
*/
get_header();
//set the template id, used to get the template specific settings
$template_id = ‘page’;
$loop_sidebar_position = td_util::get_option(‘tds_’ . $template_id . ‘_sidebar_pos’); //sidebar right is default (empty)
//get theme panel variable for page comments side wide
$td_enable_or_disable_page_comments = td_util::get_option(‘tds_disable_comments_pages’);
//read the custom single post settings – this setting overids all of them
$td_page = td_util::get_post_meta_array($post->ID, ‘td_page’);
if (!empty($td_page[‘td_sidebar_position’])) {
$loop_sidebar_position = $td_page[‘td_sidebar_position’];
}
// sidebar position used to align the breadcrumb on sidebar left + sidebar first on mobile issue
$td_sidebar_position = ”;
if($loop_sidebar_position == ‘sidebar_left’) {
$td_sidebar_position = ‘td-sidebar-left’;
}
/**
* detect the page builder
*/
$td_use_page_builder = td_global::is_page_builder_content();
if ($td_use_page_builder) {
// the page is rendered using the page builder template (no sidebars)
if (have_posts()) { ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class=”td-main-content-wrap td-main-page-wrap td-container-wrap”>
<div class=”<?php if (!td_util::tdc_is_installed()) { echo ‘td-container ‘; } ?>tdc-content-wrap”>
<?php the_content(); ?>
</div>
<?php
if($td_enable_or_disable_page_comments == ‘show_comments’) {
?>
<div class=”td-container”>
<div class=”td-pb-row”>
<div class=”td-pb-span12″>
<?php comments_template(”, true); ?>
</div>
</div>
</div>
<?php
}
?>
</div> <!– /.td-main-content-wrap –>
<?php endwhile; ?>
<?php }
} else {
//no page builder detected, we load a default page template with sidebar / no sidebar
?>
<div class=”td-main-content-wrap td-container-wrap”>
<div class=”td-container tdc-content-wrap <?php echo $td_sidebar_position; ?>”>
<div class=”td-crumb-container”>
<?php echo td_page_generator::get_page_breadcrumbs(get_the_title()); ?>
</div>
<div class=”td-pb-row”>
<?php
switch ($loop_sidebar_position) {
default:
?>
<div class=”td-pb-span8 td-main-content” role=”main”>
<div class=”td-ss-main-content”>
<?php
if (have_posts()) {
while ( have_posts() ) : the_post();
?>
<div class=”td-page-header”>
<h1 class=”entry-title td-page-title”>
<span><?php the_title() ?></span>
</h1>
</div>
<div class=”td-page-content”>
<?php
the_content();
endwhile;//end loop
}
?>
</div>
<?php
if($td_enable_or_disable_page_comments == ‘show_comments’) {
comments_template(”, true);
}?>
</div>
</div>
<div class=”td-pb-span4 td-main-sidebar” role=”complementary”>
<div class=”td-ss-main-sidebar”>
<?php get_sidebar(); ?>
</div>
</div>
<?php
break;
case ‘sidebar_left’:
?>
<div class=”td-pb-span8 td-main-content <?php echo $td_sidebar_position; ?>-content” role=”main”>
<div class=”td-ss-main-content”>
<?php
if (have_posts()) {
while ( have_posts() ) : the_post();
?>
<div class=”td-page-header”>
<h1 class=”entry-title td-page-title”>
<span><?php the_title() ?></span>
</h1>
</div>
<div class=”td-page-content”>
<?php
the_content();
endwhile; //end loop
}
?>
</div>
<?php
if($td_enable_or_disable_page_comments == ‘show_comments’) {
comments_template(”, true);
}?>
</div>
</div>
<div class=”td-pb-span4 td-main-sidebar” role=”complementary”>
<div class=”td-ss-main-sidebar”>
<?php get_sidebar(); ?>
</div>
</div>
<?php
break;
case ‘no_sidebar’:
?>
<div class=”td-pb-span12 td-main-content” role=”main”>
<?php
if (have_posts()) {
while ( have_posts() ) : the_post();
?>
<div class=”td-page-header”>
<h1 class=”entry-title td-page-title”>
<span><?php the_title() ?></span>
</h1>
</div>
<div class=”td-page-content”>
<?php
the_content();
endwhile; //end loop
}
?>
</div>
<?php
if($td_enable_or_disable_page_comments == ‘show_comments’) {
comments_template(”, true);
}?>
</div>
<?php
break;
}
?>
</div> <!– /.td-pb-row –>
</div> <!– /.td-container –>
</div> <!– /.td-main-content-wrap –>
<?php
}
get_footer();
I just fixed it on my site by using page.php from earlier in the year that does not contain the buddypress checks.
The buddy press checks are at fault Bogdan.
Hi Bogdan, is there now a solution to this, I have the exact same issue. I do not want to provide credentials, as disabling deeply troubleshooting the plugins kills major functionality in my website that is in production. None of the solutions offered so far fix the issue, and I disabled all plugins and reverted back to 8.5 from 8.5.1 they both have the same problem.
see
https://www.liberatedstocktrader.com/top-10-best-stock-market-analysis-software-review/
There should be comments.
Hi Bogdan, this is a great theme. Would it be possible to add Social Sharing for pages in the future?
Thanks
Barry http://www.liberatedstocktrader.com
