zenichro
Forum Replies Created
-
Same problem here
after plugin update,
window._wpemojiSettings = {"baseUrl": -( ommit )- ,"source":{"concatemoji":"https:\/\/xxxxx.zenich.com\/wordpress\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.0.2"}};before update;
window._wpemojiSettings = {"baseUrl": -( ommit )- ,"source":{"concatemoji":"\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.0.2"}};- This reply was modified 3 years, 8 months ago by zenichro.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] 2.8 Update problemsAbout
date DESC.
Upgrading to 2.8.1 doesn’t look fixing the problem.
After changing the code like$params = array( 'where' => $where, 'limit' => 3, 'orderby' => 't.post_date DESC' );it went good.
Thank you for the suggestions.Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] 2.8 Update problemsSame problem as mentioned above #2
$params = array(
‘where’ => $where,
‘limit’ => 30,
‘orderby’ => ‘date DESC’
);Forum: Themes and Templates
In reply to: post count display (add css)hi,
How about trying to change line 874 like this:
// $link .= ' (' . intval($category->count) . ')'; $link .= '<span class="catCount"> (' . intval($category->count) . ')</span>';You’ll get <span> tag with a class named “catCount” around category number.
Then you can add style for this new class.