xdark
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Related Posts] Related Post title font sized and Thumbnail CropIs this link right? I can’t see ERP in this page.
Forum: Plugins
In reply to: [Easy Related Posts] Related Post title font sized and Thumbnail CropSorry, my bad. I thought you were referring to post title.
You can change the title but be aware that changes will be lost in every update.
open file [ERP dir]/front/views/main/Grid/grid.php
line 34 now reads<h2 class="erpProTitle col-md-12" style="line-height: 1.4;"><?php if (isset($title)) echo $title; ?></h2>
you can change the h2 tag to anything that suits your needs or add the font size in style property like this
<h2 class="erpProTitle col-md-12" style="line-height: 1.4; font-size:14px;"><?php if (isset($title)) echo $title; ?></h2>
The above mod will change font size to 14px…
As for the images could you please give me a link to see how it looks now?
Forum: Plugins
In reply to: [Easy Related Posts] Related Post title font sized and Thumbnail CropYou can change the post title font size from option Post title size.
If the image is blur try to increase values Thumbnail height and Thumbnail width
Please note that if you are using the widget you must make the same changes to widget settings.
Forum: Plugins
In reply to: [Easy Related Posts] Mobile EditThis is normal as long as all posts are in category A and posts 5,9,10,24 are the most recent.
No entropy in finding related so the latest posts always should be displayed if they have the same categories.
You can change that by adding more categories to be more specific or adding tags and set option Rate posts by to tags. That way the ones that have more tags in common will appear in related.
Forum: Plugins
In reply to: [Easy Related Posts] Mobile EditSo if cat A is assigned to post X and post Y then Y should appear in X’s related and vice versa… Have you noticed a different behaviour?
Forum: Plugins
In reply to: [Easy Related Posts] Mobile EditI’m not sure whats the problem. If two posts have the same categories then it’s normal to show the same related (as long as Rate posts by option is set to Categories)…
Forum: Plugins
In reply to: [Easy Related Posts] Mobile EditGot it,
Modify file [ERP dir]/front/views/main/Grid/grid.phpline 46
<div class="col-md-<?php echo $columnClass; ?> col-lg-<?php echo $columnClass; ?> col-sm-<?php echo $columnClass; ?>"
change it to
<div class="col-md-<?php echo $columnClass; ?> col-lg-<?php echo $columnClass; ?> col-sm-<?php echo $columnClass; ?> col-xs-<?php echo $columnClass; ?>"
Now you should have the same layout in all devices.
Forum: Plugins
In reply to: [Easy Related Posts] Mobile EditPlease check the link, seems it’s expired.
Also a link to your site will be helpful.
Cheers
Panos VagenasForum: Plugins
In reply to: [Easy Related Posts] ErrorSure, just make the change to make it work till next release. ??
Forum: Plugins
In reply to: [Easy Related Posts] Get Thumbnail from Post Default not the Featured ImageThanks for your feedback,
This has nothing to do with Photon plugin. It’s just that ERP uses posts featured image to display as a post thumbnail.It wasn’t in my plans to implement such a functionality but I will try to do it in the next update.
Next update will also have themes compatible with Photon plugin.
Forum: Plugins
In reply to: [Easy Related Posts] ErrorThis is happening because your server has PHP V < 5.3. If this a private server you should update the server, if not in file [ERP plugin folder]/easy_related_posts.php lines 75-77 you now see
add_action('widgets_init', function () { register_widget("ERP_Widget"); });
change these three lines with the following code
function regERPWidget() { register_widget("ERP_Widget"); } add_action('widgets_init', 'regERPWidget');
Forum: Plugins
In reply to: [Easy Related Posts] Post Title Appears Twice With ThumbnailAs for the first issue try disabling some plugins to findout which one conflicts with ERP and report back to me in order to see if I can solve it.
To solve the second issue disable Photon plugin or go to
[ERP plugin folder]/front/views/main/Grid/components/thumbnail.phpand change line 6 from
data-caption="<?php echo str_replace('"', "'", $v->getTitle());?>">
to
>
Please note that after this, thumbcaption functionality for grid theme won’t work so don’t use it.
Forum: Plugins
In reply to: [Easy Related Posts] Post Title Appears Twice With ThumbnailAre you using any of WP-Cuffon or All-In-One Cufon plugins?
It appears that the second title is rendered by another plugin or script.
It seems also that there is an issue with Jetpack phototon plugin that ruins my code by adding an data-recalc-dims=”1″ attribute in thumbnails. This should be fixed in next update (not sure when) but I can give you quick fix till then.
Forum: Plugins
In reply to: [Easy Related Posts] Suggestion for future updateBoth ERP and Popular Posts Widget use list elements to present posts, so it’s normal for both to have the gaps.
I can’t solve this for Popular Posts Widget but send me an e-mail in xdark.eu at gmail.com. Have something for you to solve the gaps problem for ERP once and forall.
Forum: Plugins
In reply to: [Easy Related Posts] Random PostAre you comfortable with some coding?
Do you have ftp access?