omusman
Forum Replies Created
-
Forum: Plugins
In reply to: [Related Posts by Taxonomy] Individual Caption image sizeHello,
I am not the developer or any contributor but give this a shot:
Add this in your child theme function.php:
add_image_size("ul-custom-thumbs", 300, 150, true);Add this in your shortcode:
image_size="ul-custom-thumbs"
OR
[related_posts_by_tax columns="2" format="thumbnails" image_size="post-thumbnail" posts_per_page="6" taxonomies="category" link_caption="true" image_size="ul-custom-thumbs"]and Regenerate all the thumbnails with this plugins:
Forum: Plugins
In reply to: [Related Posts by Taxonomy] Columns in mobile phonesYou can achieve this with CSS Media query:
This might be useful:
Forum: Plugins
In reply to: [Related Posts by Taxonomy] Shortcode executed twice in same pageDuplicate results are showing, i hope we can randomize the results in separate in both shortcodes.
Forum: Plugins
In reply to: [Related Posts by Taxonomy] Shortcode only showing as text not executing..Forum: Plugins
In reply to: [Related Posts by Taxonomy] New target for linked thumbnailsThis might help:
Forum: Themes and Templates
In reply to: [GeneratePress] Form without submit buttonWas adding id=”myForm” on div tag rather than form elemet:
Wrong:
<form action="google.com" method="post" target="_blank"> <div id="myForm">Google</div> </form>Right:
<form id="myForm" action="google.com" method="post" target="_blank"> <div>Google</div> </form>Thank You Tom 🙂