Idiom
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Load More] Masonry Items Overlapping on Load MoreHey @panhead, I’m not familiar with the theme your using, but it appears that there is an Ajax script that is dynamically generating the positioning for each of the items…but it’s for some reason, it is not recognizing the new items being added after ‘load more” is clicked.
Forum: Plugins
In reply to: [Easy Load More] Still Maintaining?Hey Adam – we haven’t put out an update in sometime, but still actively use it in our projects.
I’m glad its working well for you!
Forum: Plugins
In reply to: [Easy Social Share Buttons] Errors in ApacheHi Mike –
Do you have anything defined for post revisions in your wp-config.php file?
as an example:
`define( ‘WP_POST_REVISIONS’, 3);Forum: Plugins
In reply to: [Easy Load More] Mac Safari Browser & iPhone 6 safari browser Load MoreHi Pradeep – We have tested the plugin on both Safari and iPhone 6 and can’t reproduce the issue.
Forum: Plugins
In reply to: [Easy Load More] Content jumping after click load moreSounds like a potential conflict with another plugin. Please try and disable the others to see if this fixes the issue.
Forum: Plugins
In reply to: [Easy Social Share Buttons] Linkedin Button doesn’t share newsI believe you are using a different plugin.
Forum: Plugins
In reply to: [Easy Social Share Buttons] Custom Post TypeThis should work Trista. What eCommerce plugin are you using?
Forum: Plugins
In reply to: [Easy Social Share Buttons] Share Count in the icon without the textThis is not currently an option.
Forum: Plugins
In reply to: [Easy Load More] Hide load more button when reached maxHi,
The load more button should automatically remove itself when all the posts are displayed. One way you can check if it is working properly is using the Inspector in Chrome or Firefox developer tools. Right click on the button and select “Inspect” and you should see the button’s html. There you should see something like this:
<button class="elm-button" data-href="https://yoursite.com" data-page="1" data-max-pages="3">
The button should remove itself when
data-page
is equal todata-max-pages
. If it isn’t, then there could be an error in the javascript. Or there could be something happening with your post query loop. Checking the page and max pages attributes would be the first place to look though.Hope that helps get you closer to solving the issue. Thanks!
Forum: Plugins
In reply to: [Easy Load More] Are possible two instances of this plugin?Hi,
Thanks for using the plugin. Sorry but while you could duplicate the plugin folder and install it as a duplicate, the two instances will share the same menus and settings. You would have to go into the duplicate plugin’s files and update some of the code to create an entirely new instance. Sorry.
Forum: Plugins
In reply to: [Easy Load More] button load more dosen’t disappearThanks for downloading the plugin. You are correct that the button should remove itself if the data-page attribute is equal to data-max-pages. This is handled by the plugin’s javascript. It might be possible that there is some script conflict that’s preventing the plugin’s scripts from executing. If you bring up your browser’s developer tools and look at the console check for any errors. Or when you inspect the button do the data-page and data-max-pages values look correct? That might better help us understand what might be happening on your site.
Thanks!
Forum: Plugins
In reply to: [Easy Load More] Load more content loads after the buttonHi,
Thanks for downloading the plugin. The load more button requires that your post list is wrapped in a container element. When the button is clicked new posts are appended within that element.
In your Easy Load More Settings, what do you have for the “Post List Wrap Selector” field?
For example you could set it to “#post-list” and update your template like this:
<div id="post-list"> <?php // Start the Loop. while ( have_posts() ) : the_post(); get_template_part('content'); endwhile; ?> </div> <!-- end #post-list --> <?php if ($modality_theme_options['simple_paginaton'] == '1') { // Displays links for next and previous pages. ?> <div class="clear"></div> <div class="simple-pagination"> <?php posts_nav_link(); ?> </div> <?php } else { // Previous/next post navigation. ?> <div class="clear"></div><?php modality_paging_nav(); } ?>
After that, adding the
<?php load_more_button(); ?>
anywhere outside of the “#post-list” <div> should work.I hope that helps solve your issue.
Thanks!
Forum: Plugins
In reply to: [Easy Social Share Buttons] App Not Setup – Error MessageHi,
Can you clarify when you are seeing this message? It looks like it may be a message from Facebook when you click the Facebook share button?
Thanks!
Forum: Plugins
In reply to: [Easy Social Share Buttons] fb and msgr share not workingSorry but it looking at your site it appears that you are using a different but similarly named social sharing plugin.
Forum: Plugins
In reply to: [Easy Social Share Buttons] HTTPS Mixed Content ErrorsHi,
It appears that you are using a different, but similarly named social sharing plugin. Our plugin does not have a “essb.woff” font file. Under the plugin description in the WordPress dashboard maybe you can find a link to the correct plugin author’s site.
Sorry we can’t help.