Misael Garcia Vazquez
Forum Replies Created
-
Same error, I tried also other plugins and getting the same.
Forum: Plugins
In reply to: [WP Open Graph] FB Debug Tool ErrorsSame problem for me, deactivating plugin. It need to insert the code in the head.
“Errors That Must Be Fixed
Meta Tags In Body: Your page has meta tags in the body instead of the head. This may be because your HTML was malformed and they fell lower in the parse tree.
Please fix this in order for the tags to be usable”Forum: Themes and Templates
In reply to: [Max Magazine] Widgets overlapping in sidebar – Max MagazineNavigate to /wp-content/themes/max-magazine/js and you will find the custom.js file.
You can copy it from here
https://atiemponoticias.com/wp-content/themes/max-magazine/js/custom.js
I am able to see it in IE. Please update.
Forum: Themes and Templates
In reply to: [Max Magazine] Switch H1 and H3 for SEO purposesI was thinking that you can split the configuration in the CSS and make a search and replace in al the theme files.
Forum: Themes and Templates
In reply to: [Max Magazine] Widgets overlapping in sidebar – Max MagazineForget it about the `$(window).load();
Move the
` jQuery(‘#sidebar’).masonry({
itemSelector: ‘.widget’
});``To the very bottom of the custom.js and save it.
It is working for me at https://www.atiemponoticias.com
Please let me know if worked for you.
Forum: Themes and Templates
In reply to: [Max Magazine] Widgets overlapping in sidebar – Max MagazineI found a partial fix at:
you need to modify the custom.js in this way:
$(window).load( jQuery('#sidebar').masonry({ itemSelector: '.widget' }); );
adding the
$(window).load( );` but now the Carousel, featured and slider are not showing well…
No I will try applying this to all. Will let you know.
Forum: Themes and Templates
In reply to: [Max Magazine] Carousel Not ShowingHow you solved it?
Forum: Themes and Templates
In reply to: [Max Magazine] Carousel Not ShowingDid you load a featured image in each post?
Forum: Themes and Templates
In reply to: [Max Magazine] Widgets overlapping in sidebar – Max MagazineIs there any way to make a double load of the sidebar in order to avoid the overlapping in the “first load”?
Forum: Themes and Templates
In reply to: [Max Magazine] Widgets overlapping in sidebar – Max MagazineOne curious thing is that if you load the home page and then you go to some category and go back to the home page the overlapping is no longer there. The isssue is at the first load.
Forum: Themes and Templates
In reply to: [Max Magazine] Show more posts in category linkGo to Edit Appearance and select the slider.php
change this:<?php /** * The template for the slider on homepage. * * @file feat_cat1.php * @package max-magazine * @author Sami Ch. * @link https://gazpo.com **/ ?> <?php $slider_cat_id = max_magazine_get_option( 'slider_category'); //if no category is selected for slider, show latest posts if ( $slider_cat_id == 0 ) { $post_query = 'posts_per_page=4'; } else { $post_query = 'cat='.$slider_cat_id.'&posts_per_page=4';
change
$post_query = 'cat='.$slider_cat_id.'&posts_per_page=4';
`the “4” or the number you have for your “10”.