wp-fan
Forum Replies Created
-
Also the latest versions work very reliable here.
Support and functionality is really great. I am using the paid add-ons, but even without, newsletter plugin takes you a long way.Forum: Plugins
In reply to: [Table of Contents Plus] Rendering problem with blog short codeMichael,
thanks for helping me here.Meanwhile, I have hired programers who are creating a child theme for me. They were capable of finding a solution – details not known to me, I am afraid.
Regards,
Thomas
Same here, I am having problems with manual ordering. In the backend, I can drag&drop the posts or articles in the right order, but after saving, they will be reordered. The output in the article will be according to the random order in the backend.
What a pity. Such a useful plugin, otherwise.
Forum: Plugins
In reply to: [W3 Total Cache] W3TC disk_enhanced Page caching gzip debuggingYou can always revert to older versions:
Forum: Plugins
In reply to: [Table of Contents Plus] Rendering problem with blog short codeIt seems like I am stuck in the middle of two dev teams….
The mysitemyway support says:
Our blog shortcode does not mess with the main query. I don’t know what else to tell you. I would try finding another plugin that does the same thing.
What would you do in my shoes? Switch the theme? Try another TOC plugin? Leave wordpress as a whole? ;=)
Sigh….
Forum: Plugins
In reply to: [Table of Contents Plus] Rendering problem with blog short codeHi Michael,
thank you so much for your answer. I really very much appreciate your help here. I will forward this information to the theme developers.
Would you allow one additional question to make sure I fully understand?
You mention that
Unfortunately that confirms that the theme, using the show all blogposts shortcode, is doing something with the main query loop as it is not printing out the sharing buttons for the actual page.
On other pages and articles, I do see those sharing buttons:
Article:
https://wp10600376.server-he.de/zukunftskonferenz-moderator-teamentwicklung/Page:
https://wp10600376.server-he.de/arbeitsfelder/Does your statement mean that the theme is presumably messing things up only when the “show category articles” shortcode is being used?
Thanks for clarification. And let’s see what the developers at mysitemyway say.
Kind regards,
Thomas
Forum: Plugins
In reply to: [Table of Contents Plus] Rendering problem with blog short codeSorry, I meant to answer those, but I was probably too tired and not concentrated.
I have searched the code of the articles listed in the bottom in raw html editor. None of those have [no_toc] anywhere. Those who do not show a generated TOC do not qualify because they have don’t have the appropriate amount of headlines.
I have activated Jetpack’s sharing buttons, please check if you find the behaviour or signs you are looking for.
This article still has the TOC:
https://wp10600376.server-he.de/test-with-toc/this one shows the sharing buttons beneath the listed articles in the bottom, but still no TOC:
https://wp10600376.server-he.de/test-with-toc-and-blog-shortcode/Shall I provide you with the full code of the .php files the theme support mentions? If yes, please contact me through the website. And thanks for holding on to this matter for so long…
Regards,
Thomas
Forum: Plugins
In reply to: [Table of Contents Plus] Rendering problem with blog short codeHere is what the support has to say:
We create a new WP_Query instance for the blog shortcodes so it shouldn’t be messing with the default query. The code can be found in /wp-content/themes/[your_theme]/lib/shortcodes/14-blog.php.
I believe the only place we mess with the default query is in /wp-content/themes/[your_theme]/lib/functions/theme.php on lines 1480 – 1540.
We exclude some categories that the user specifies on our blog page and then in the archive / search pages we exclude the same categories and set the post type to only posts.
I can provide you with the full code. How could be do that? Email me via the test-site linked above?
Forum: Plugins
In reply to: [Table of Contents Plus] Rendering problem with blog short codeSorry my answer takes that long, I did not have proper internet access for a while.
I added
var_dump($content);
to line 1499 of toc.phpthe “surrounding” of the code looks like this now:
function the_content( $content ) { global $post; $items = $css_classes = $anchor = ''; $custom_toc_position = strpos($content, '<!--TOC-->'); $find = $replace = array(); var_dump($content); if ( $this->is_eligible($custom_toc_position) ) {
Is this correct?
Here are the results (I will not remove the variable until your next reaction in this thread):
https://wp10600376.server-he.de/test-with-toc/
https://wp10600376.server-he.de/test-with-toc-and-blog-shortcode/Kind regards,
Thomas
Forum: Plugins
In reply to: [Table of Contents Plus] Rendering problem with blog short codeHello Michael,
Are you using auto insertion or the [toc] shortcode?
I am using the [toc] shortcode.
In the function, there is also a ‘wp_reset_query();’
I have tried inserting `wp_reset_postdata(); before, after and without it, no change yet.
The code of the whole function looks like this:
function _blog_shortcode( $args = array() ) { global $post, $wp_rewrite, $wp_query, $mysite; extract( $args['atts'] ); $out = ''; $showposts = trim( $showposts ); $column = ( !empty( $column ) ) ? trim( $column ) : '3'; $thumb = ( !empty( $thumb ) ) ? trim( $thumb ) : 'medium'; $offset = ( isset( $offset ) ) ? trim( $offset ) : ''; $post_in = ( !empty($post_in) ) ? explode(",", trim( $post_in )) : ''; $category_in = ( !empty($category_in) ) ? explode(",", trim( $category_in )) : ''; $tag_in = ( !empty($tag_in) ) ? explode(",", trim( $tag_in )) : ''; if( is_front_page() ) { $_layout = mysite_get_setting( 'homepage_layout' ); $images = ( $_layout == 'full_width' ? 'images' : ( $_layout == 'left_sidebar' ? 'small_sidebar_images' : 'big_sidebar_images' ) ); } else { $post_obj = $wp_query->get_queried_object(); $_layout = get_post_meta( $post_obj->ID, '_layout', true ); $template = get_post_meta( $post_obj->ID, '_wp_page_template', true ); $images = ( $_layout == 'full_width' ? 'images' : ( $_layout == 'left_sidebar' || $template == 'template-featuretour.php' ? 'small_sidebar_images' : 'big_sidebar_images' ) ); } $post_img = ''; $blog_query = new WP_Query(); if( trim( $pagination ) == 'true' ) { if( is_numeric( $offset ) ) { $mysite->offset = $offset; $mysite->posts_per_page = $showposts; add_filter('post_limits', 'my_post_limit'); } $paged = mysite_get_page_query(); $blog_query->query(array( 'post__in' => $post_in, 'category__in' => $category_in, 'tag__in' => $tag_in, 'post_type' => 'post', 'posts_per_page' => $showposts, 'paged' => $paged, 'offset' => $offset, 'ignore_sticky_posts' => 1 )); } else { $blog_query->query(array( 'post__in' => $post_in, 'category__in' => $category_in, 'tag__in' => $tag_in, 'post_type' => 'post', 'showposts' => $showposts, 'nopaging' => 0, 'offset' => $offset, 'ignore_sticky_posts' => 1 )); } if( $blog_query->have_posts() ) : $img_sizes = $mysite->layout[$images]; $width = ''; $height = ''; if( $args['type'] == 'blog_grid' ) { switch( $column ) { case 1: $main_class = 'post_grid one_column_blog'; $post_class = 'post_grid_module'; $content_class = 'post_grid_content'; $img_class = 'post_grid_image'; $excerpt_lenth = 400; $width = $img_sizes['one_column_blog'][0]; $height = $img_sizes['one_column_blog'][1]; break; case 2: $main_class = 'post_grid two_column_blog'; $post_class = 'post_grid_module'; $content_class = 'post_grid_content'; $img_class = 'post_grid_image'; $column_class = 'one_half'; $excerpt_lenth = 150; $width = $img_sizes['two_column_blog'][0]; $height = $img_sizes['two_column_blog'][1]; break; case 3: $main_class = 'post_grid three_column_blog'; $post_class = 'post_grid_module'; $content_class = 'post_grid_content'; $img_class = 'post_grid_image'; $column_class = 'one_third'; $excerpt_lenth = 75; $width = $img_sizes['three_column_blog'][0]; $height = $img_sizes['three_column_blog'][1]; break; case 4: $main_class = 'post_grid four_column_blog'; $post_class = 'post_grid_module'; $content_class = 'post_grid_content'; $img_class = 'post_grid_image'; $column_class = 'one_fourth'; $excerpt_lenth = 50; $width = $img_sizes['four_column_blog'][0]; $height = $img_sizes['four_column_blog'][1]; break; } } else { if( $args['type'] == 'blog_list' ) { switch( $thumb ) { case 'small': $main_class = 'post_list small_post_list'; $post_class = 'post_list_module'; $content_class = 'post_list_content'; $img_class = 'post_list_image'; $excerpt_lenth = 180; $width = $img_sizes['small_post_list'][0]; $height = $img_sizes['small_post_list'][1]; break; case 'medium': $main_class = 'post_list medium_post_list'; $post_class = 'post_list_module'; $content_class = 'post_list_content'; $img_class = 'post_list_image'; $excerpt_lenth = 180; $width = $img_sizes['medium_post_list'][0]; $height = $img_sizes['medium_post_list'][1]; break; case 'large': $main_class = 'post_list large_post_list'; $post_class = 'post_list_module'; $content_class = 'post_list_content'; $img_class = 'post_list_image'; $excerpt_lenth = 180; $width = $img_sizes['large_post_list'][0]; $height = $img_sizes['large_post_list'][1]; break; } } } $filter_args = array( 'width' => $width, 'height' => $height, 'img_class' => $img_class, 'link_class' => 'blog_sc_image_load', 'preload' => ( isset( $mysite->mobile ) ? false : true ), 'post_content' => $post_content, 'disable' => $disable, 'column' => $column, 'thumb' => $thumb, 'type' => $args['type'], 'shortcode' => true, 'echo' => false ); $out .= ( $args['type'] == 'blog_grid' ) ? '<div class="' . $main_class . '">' : '<ul class="' . $main_class . '">'; $i=1; while( $blog_query->have_posts() ) : $blog_query->the_post(); $post_id = get_the_ID(); $video = get_post_meta( $post_id, '_featured_video', true); if ( !empty( $video ) ) $filter_args = array_merge( array( 'video' => $video ), $filter_args ); $out .= ( $args['type'] == 'blog_list' ? '' : ( $column != 1 ? '<div class="' . ( $i%$column == 0 ? $column_class . ' last' : $column_class ) . '">' : '' ) ); $out .= ( $args['type'] == 'blog_grid' ) ? '<div class="' . join( ' ', get_post_class( $post_class, $post_id ) ) . '">' : '<li class="' . join( ' ', get_post_class( $post_class, $post_id ) ) . '">'; $out .= mysite_before_post_sc( $filter_args ); $out .= '<div class="' . $content_class . '">'; $out .= mysite_before_entry_sc( $filter_args ); $out .= '<div class="post_excerpt">'; if( strpos( $disable, 'content' ) === false ) { ob_start(); mysite_post_content( $filter_args ); $out .= ob_get_clean(); } $out .= '</div>'; $out .= mysite_after_entry_sc( $filter_args ); $out .= '</div><!-- .post_class -->'; $out .= ( $args['type'] == 'blog_grid' ) ? '</div>' : '</li>'; $out .= ( $args['type'] == 'blog_list' ? '' : ( $column != 1 ? '</div>' : '' ) ); if( $args['type'] == 'blog_grid' ) { if( ( $i % $column ) == 0 ) $out .= '<div class="clearboth"></div>'; } $i++; endwhile; $out .= ( $args['type'] == 'blog_grid' ) ? '</div>' : '</ul>'; if( $pagination == 'true' ) { $out .= mysite_pagenavi( '', '', $blog_query ); } endif; if( ( is_numeric( $offset ) ) && ( trim( $pagination ) == 'true' ) ) remove_filter('post_limits', 'my_post_limit'); wp_reset_query(); return '<!--start_raw-->' . $out . '<!--end_raw-->'; }
Any ideas?
BTW, could this problem (ant its solution) have something to do with the issue I am describing?
Forum: Plugins
In reply to: [Table of Contents Plus] Using ToC with NextPageI am also opting for this function. Would be great to have it with TOC+!
Mitcho,
thanks for this great plugin.
I do miss the shortcode feature that has been abandoned.
I would love to place “related posts” where I want them to be, depending on length of articles and maybe sometimes “above the fold” to get more reader interaction and reduce bounce rates, which is beneficial for SEO if you use Google analytics.So I would like to bring this topic back up since you have added the very useful “noyarpp” shortcode in the latest version.
Could you please reconsider your decision and re-introduce the short code feature?
Answer very much appreciated. Thank you.
Regards,
Thomas
Forum: Plugins
In reply to: [Google CSE] ERROR: RequiredThe latest version 3.51 with German .pot language pack.
Forum: Plugins
In reply to: [W3 Total Cache] Disabling W3C for a standalone forumNot sure about that. Try and see… ;=)
Forum: Plugins
In reply to: [W3 Total Cache] Amazon Cloudfront Custom file list problemSometimes it helps to include the path to the files in the custom file list section. The * star is important here, for example:
wp-content/gallery/*
Also make sure the correct file type is listed under “File types to import”.