faycalboutam
Forum Replies Created
-
Forum: Plugins
In reply to: [Expand Divi] Font Awesome Icon Conflict with WP DiscuzI honestly don’t see the issue when testing locally. Both icons are showing up ok to me.
What I noticed wrong with wpDiscuz is that they’re usingwpdiscuz-font-awesome
as handle, which means if another plugin is loading FontAwesome, you will see it loading twice. They need to drop thewpdiscuz-
part, not sure but they could have a good reason for doing this.Anyway, I will update FontAwesome to v5, it turns out that it’s not smooth, they made some serious changes from v4 to 5.
Tomorrow I’ll release the new version with some new features. When you update, be sure to clear the cache and let me know if there’s anything wrong.Thanks : )
Forum: Plugins
In reply to: [Expand Divi] Add the featuresHi : )
So you want to re-position the related posts section to somewhere else? It can be done with some JS code, can you share the url and exactly where you want to move it to?
Forum: Plugins
In reply to: [Expand Divi] Display Author Box Only On Certain CategoriesHey : )
Without overriding the plugin core files, you can do that with CSS only… ex:
.single article.category-art .expand_divi_author_box { display: none; }
This will hide the author box on the posts with the “Art” category. If you want to add another category, you do something like this:
.single article.category-art .expand_divi_author_box, .single article.category-sport .expand_divi_author_box { display: none; }
And so on…
Forum: Plugins
In reply to: [Expand Divi] Layout Order problemOh yeah! I’ll consider adding it as an option in the future : )
Forum: Plugins
In reply to: [Expand Divi] Layout Order problemHey!
Hmm.. I hear you but this is a double-edged sword, I’m sure there are other plugins that may have content which should be put at the end of the post.. I don’t want to force the priority order in this case.
I can help you with a JS code though, put this in the integration tab of theme options (head or body area):
<script> (function($) { $(document).ready(function() { if ( $('body').hasClass('single') ) { var wppr = $('.wppr-review-container'), ed_tags = $('.expand-divi-below-tags'); if ( wppr.length && ed_tags.length ) { wppr.insertBefore(ed_tags); } } }); })(jQuery); </script>
This code looks for the review box, and add it before the tags in single posts.
Forum: Plugins
In reply to: [Expand Divi] Translate You Might Also LikeThis is how WPML recommends adding dynamic strings, after doing that you should be able to detect the string with WPML and translate it.
Forum: Plugins
In reply to: [Expand Divi] Translate You Might Also LikeI don’t have the plugin to test this, but does it work if you changed this code in wp-content\plugins\expand-divi\inc\features\ExpandDiviRelatedPosts.php:
$html.= '<h2>' . esc_html( $related_posts_title ) . '</h2>';
To:
$html.= '<h2>' . __( esc_html( $related_posts_title ), 'expand-divi' ) . '</h2>';
Forum: Plugins
In reply to: [Expand Divi] Recent posts – resize of photos and titlesHere’s a code to increase the image size:
.footer-widget .expand_divi_recent_post img { width: 100px; height: auto; }
Change the width from 100px to anything you like.
The post title will use the font selected for headlines in (Dashboard => Appearance => Customize => General Settings => Typography), so you can change it from here : )
Forum: Plugins
In reply to: [Expand Divi] Recent posts – resize of photos and titlesAdd this code in theme options > custom CSS:
.expand_divi_related_post h4 { font-size: 16px !important; }
Increase the value (16px) as needed.
What do you mean by making the image bigger? Increase the height? Can you share your site URL?
Forum: Plugins
In reply to: [Expand Divi] My content is goneThanks! I fixed the issue, please update.
Forum: Plugins
In reply to: [Expand Divi] Divi Builder TimeoutHey Sam!
Are you still facing this issue? Try to clear your cache and disable other plugins instead, it could be that you have low memory limit over there.
Forum: Plugins
In reply to: [Expand Divi] Override PluginHey Yash!
Sorry I was busy these past weeks, yeah I’m afraid you can’t override those from a child theme or something like that however I’m gonna consider your improvements for future releases.
Thanks!
Forum: Plugins
In reply to: [Expand Divi] Feature request for social media links to Author BoxWill consider it, thanks! ??
Forum: Plugins
In reply to: [Expand Divi] Override PluginHi Yash,
What are you trying to do exactly?
Forum: Plugins
In reply to: [Expand Divi] Loader Circle ProblemI fixed this in 1.1.2 version, thanks.