Sri Shunyata
Forum Replies Created
-
Forum: Plugins
In reply to: [Forget About Shortcode Buttons] Looking for v2 beta testersI’s like to give your v2 Beta Release a go. One of my main concerns is speed. Font Awesome is already active on my site. So, I’m wondering if there is a back-end control to not register or enqueue the Font-Awesome Feature a second time.
Thanks
Forum: Plugins
In reply to: [Express Checkout via PayPal for WooCommerce] Error 503Ok, apparently this is the situation: “To accept payments using the new REST APIs and PayPal Mobile SDK, we currently require a U.S. PayPal Business account. But stay tuned for more country support. Note that most countries can use our Classic APIs.
This is the reported problem: “Note: Direct credit card processing is not available for you when using REST APIs. Your live credentials are inoperable for direct credit card processing for your country but your test credentials are enabled for sandbox testing.”
So, the question is how to use classic API’s with Express Checkout? Or any other solution would be much appreciated.
This is on topic but slightly different. Maybe you could add SVG Image support for the PayPal Buttons and Logos.
- This reply was modified 8 years ago by Sri Shunyata. Reason: Typo
Forum: Themes and Templates
In reply to: [Storefront] How to display Author and Date Meta Data on Pages?For the sake of extra clarity I would like add a byline (author, post published date and or updated date) below your post title on pages.
According to this rather old article: How to Display Blog Post Meta Data this is usually done by adding something like the following inside the page or post loop.
By <?php the_author_posts_link(); ?> on <?php the_time('F jS, Y'); ?> in <?php the_category(', '); ?> <?php edit_post_link(__('{Edit}'), ''); ?>
The problem is that I’d lose this customization when I update my child theme. Is there a way to inject it into the loop by way of a function?
Thanks
`
Forum: Plugins
In reply to: [WooCommerce] Variation Attribute Alignment on Cart PageThanks Caleb,
Worked perfectly right out of the box.
Your advice is much appreciated : )
I would not have thought about using inline display.Terrible support as well. The paid version worked fine but this Free Version is a nightmare.
Forum: Plugins
In reply to: [WooCommerce PayPal Checkout Payment Gateway] Paypal Payment Options ImageIn the depreciated paid version of the plugin by Skyverge we could chose a standard icon or one to match the website theme. \
Adding a check out icon source to the Dashboard Settings UI would be much appreciated by many of us users.
Thanks
Forum: Plugins
In reply to: [Bootstrap Modals] How to Trigger a Modal Popup from a Link?Hi Neil,
Already figured out how to trigger the modal with a link. See Below.Is there a way to target a jump link within a Modal?
<!-- Trigger the modal with a Link --> <a href="#pg-123-modal-1" data-toggle="modal" data-target="#pg-123-modal-1"><h5>Read More</h5></a> <!-- Modal --> <div id="pg-123-modal-1" class="modal fade" role="dialog"> <div class="modal-dialog"> <!-- Modal content--> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal">×</button> <h4 class="modal-title">Modal Header</h4> </div> <div class="modal-body"> MODAL CONTENT </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> </div> </div> </div> </div>
Thanks
Thanks Danny : )
Forum: Themes and Templates
In reply to: [Storefront] Change Number of Product Columns on Shop PageHi James,
Thanks for that. It worked perfectly.
I promise I won’t bother you again with questions on php basics.
It seems the to fully customize WooCommerce and tap into it’s robust functionality, one should at least have a foundational understanding of PHP.
So, I’ve been learning it.
Thanks Again
Forum: Plugins
In reply to: [Responsify WP] Incompatibility with genesis frameworkOk Stephan,
I’ve set up a clean install of Genesis for you on a newly installed WP Site and just sent you all of the login details.
I’m pointing one of my domains to the site so the DNS might still be in propagation.
On a side note, I’m toying with the idea of making a Tutorial on Responsive Image Optimization!
So I have a basket full of questions
Would it be best to ask them here on support or would you prefer that I PM them to you?
Cheers
Forum: Plugins
In reply to: [Responsify WP] Incompatibility with genesis frameworkHi Stefan,
I forgot to mention how awesome your plugin looks!
The robust set of options that you offer make it idea for a wide range of scenarios.
So, it would seem like a perfect fit for Genesis.
I’ll go ahead and set up a virgin Instal of Genesis for you but how can I PM you all of the Login Details.
Not sure how to PM here on WP Org
Forum: Plugins
In reply to: [Responsify WP] Incompatibility with genesis frameworkThe RICG Responsive Images Plugin also has issues with the Genesis Framework. So you may want to take a look at the support thread over there.
"I think that's the plugin some of us discussed at WordCamp London. We discussed whether it was likely to be compatible with genesis_get_image, and I said that it probably is because genesis_get_image calls wp_get_attachment_image. But I later looked at the plugin source and it doesn't support images that come from wp_get_attachment_image, only ones that come from get_the_post_thumbnail or hard-coded into the post body. I don't know why."
Stefan, if you’d like I’d be happy to set up a Genesis testing site for you, either on my Shared Server or on a server of your own choosing.
Forum: Plugins
In reply to: [RICG Responsive Images] Incompatibility with Genesis Framework?Wow, thanks for that ElectricBrick,
It would be awesome if someone much more cleaver than I am to come up with a Genesis Compatible Version of this plugin.
Wouldn’t it simply be replacing all of the occurrences of get_the_post_thumbnail with get_the_post_thumbnail?
I Sure would like to have this capability under the hood of my Genesis Sites
Forum: Themes and Templates
In reply to: [Storefront] Change Number of Product Columns on Shop PageHi James,
I’ve been searching around to see how to properly combine both conditions in a single if statement and came up with the following.
add_action( 'get_header', 'remove_storefront_sidebar' ); function remove_storefront_sidebar() { if ( is_product() // or if(is_shop()) { remove_action( 'storefront_sidebar', 'storefront_get_sidebar', 10 ); } }
But obviously something is wrong because it’s causing errors.
Any help would be much appreciated.
Thx
Shunyata