faycalboutam
Forum Replies Created
-
Forum: Plugins
In reply to: [Expand Divi] minor errorI fixed those in 1.1.2 version, thanks.
Forum: Plugins
In reply to: [Expand Divi] No commas between post tagsHmm.. Not sure why this file (frontend-styles.css) is not loading for you, can’t replicate on my test site. Probably some plugin conflict because I see a JS error in your site..
But try to copy the CSS into Divi => Theme Options => Custom CSS:.expand-divi-above-tags a:after, .expand-divi-below-tags a:after { content: ','; }
Forum: Plugins
In reply to: [Expand Divi] Related post : “You might also like”Hey! Please add this code in Divi => Integration => Add code to the < body > (good for tracking codes such as google analytics):
<script> (function($) { if ( $('body').hasClass('single') ) { $('.expand_divi_related_posts_title').text('Your new text here'); } })(jQuery); </script>
Forum: Plugins
In reply to: [Expand Divi] Position of related postHi,
I’m afraid there’s no option for that, you must be adding the footer with the Divi builder, the posts will show up after the main content (which the footer is part of). I can move that with some JS code if you shared your link here. Is this footer exists on all of your posts?
Forum: Plugins
In reply to: [Expand Divi] How to Style Previous & NextHey!
Glad you’re enjoying the plugin : )
You can add this code in theme options:
.single-post .nav-single.clearfix a {
font-size: 20px;
font-weight: bold;
}Feel free to change the size as needed.
Forum: Plugins
In reply to: [Expand Divi] Related PostsOh yes, I can see the problem in that logic.. I’m going to update the plugin with a fix, you can fix it by editing the wp-content\plugins\expand-divi\inc\features\ExpandDiviRelatedPosts.php file and replacing all its content with this:
Now it’s going to show posts if they share at least one tag.
- This reply was modified 6 years, 2 months ago by faycalboutam.
Forum: Plugins
In reply to: [Expand Divi] showing php errors how to fixThank you, I fixed this in 1.1.1 update.
Forum: Plugins
In reply to: [Expand Divi] Related PostsHello,
That’s just how it was coded, to grab the first tag and then look for posts with this tag. As for the images, you can make them square with CSS:
.expand_divi_related_post img {
height: 145px;
}Add that in theme options => Custom CSS field. The images will always look good even with with CSS.
Forum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] Show entire contentThanks Ernest!
Forum: Plugins
In reply to: [Expand Divi] Feature requests: lightbox, social sharing, etc@thefiddler You can fork it, improve on it yes.. I’m fine with that.
Forum: Plugins
In reply to: [Expand Divi] Feature requests: lightbox, social sharing, etcI implemented lightbox and will consider the rest when I have time. Thanks!
Forum: Plugins
In reply to: [Expand Divi] Recent ProductHey!
Please check here: https://divi-expand.wp-skill.com/index.php/recent-posts-widget/
Forum: Plugins
In reply to: [Expand Divi] No related posts on newer posts?Hey!
Yes, it’s taking the first tag of the current post and shows other posts associated with this tag.. I think tags makes more sense than categories, with that you will have better results. You should be using tags in any case, I heard they can improve SEO but not really sure of that!
Other plugins are using the same approach, therefore I used it in my plugin.. and yes.. adding an option to select the criteria would be useful but since I’m working full time I rarely find time for this.. I will try to find time though, thanks for your suggestion, I’ll add it to my list.- This reply was modified 6 years, 4 months ago by faycalboutam.
Forum: Plugins
In reply to: [Expand Divi] How to style preloaderHello,
The loader is created and styled using CSS, so there’s no option to change that without overriding the styles with CSS code. This could be added in the future maybe.