Hi there, I have a blog page in my website. It was working fine, but now my items are not showing in blog page. How can I fix this problem?
Blog page: http://www.fpfco.ir/مقالات-آموزشی/
Hello,
You can see this issue in the Chrome inspector: http://prntscr.com/ghsudw -> And may be is a plugin conflict. Disable all of the plugins (except the THEMECO plugins) and check it again.
I have all of my plugins disabled now, but nothing happened.
Hi,
Can you try disabling Cornerstone Powerpack plugin and see if that fixes the issue.
Thanks
I have disabled it but nothing was changed. I need to fix this as soon as possible.
Hello There,
Would you mind providing us the url of your site with login credentials so we can take a closer look and fix the issue? This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
To do this, you can make a secure note with the following info:
– Link to your site
– WordPress Admin username / password
- FTP Hostname
- FTP Username
- FTP Password
Thank you.
Hi again,
Thank you for providing the credentials. I checked your setup and you’ve multiple instances of Pro theme (Pro and X pro with child themes) this can conflict. Please remove the old version of theme (X Pro and X Pro - Child Theme) and see if this resolves the issue.
Let us know how this goes!
Thanks for reply, currently, I only have the X Pro and X Pro child theme. Child theme is used in case of updating. But still the problem is there… help me please!
Hello There,
I can confirmed that this is a bug and has yet to be resolve in the next release. To resolve this to save you some time, since you have your child theme active and ready, please follow the following steps below:
1] Using Notepad or TextEdit or Sublime Text or any text editor, please create a new file in your local machine.
2] Insert the following code into that new file
<?php
// =============================================================================
// VIEWS/GLOBAL/_SCRIPT-ISOTOPE-INDEX.PHP
// -----------------------------------------------------------------------------
// Isotope script call for index output.
// =============================================================================
$is_rtl = is_rtl();
?>
<script>
jQuery(document).ready(function($) {
<?php if ( $is_rtl ) : ?>
$.xIsotope.prototype._positionAbs = function( x, y ) {
return { right: x, top: y };
};
<?php endif; ?>
var $container = $('#x-iso-container');
$container.before('<span id="x-isotope-loading"><span>');
$(window).on('load', function() {
$container.xIsotope({
itemSelector : '.x-iso-container > .hentry',
resizable : true,
filter : '*',
<?php if ( $is_rtl ) : ?>
transformsEnabled : false,
<?php endif; ?>
containerStyle : {
overflow : 'hidden',
position : 'relative'
}
});
$('#x-isotope-loading').stop(true,true).fadeOut(300);
$('#x-iso-container > .hentry').each(function(i) {
$(this).delay(i * 150).animate({'opacity' : 1}, 500);
});
});
$(window).xsmartresize(function() {
$container.xIsotope({ });
});
});
</script>
3] Save the file named as _script-isotope-index.php
4] Upload this file to your server in the child theme’s folder wp-content/themes/pro-child/framework/views/global/
You may need to create the folders since this folder path does not exist in your child theme yet.
Please let us know how it goes.
That’s the spirit!! Thank you.