brandbarron
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] order-received endpoint not loadingSup all,
Worked it out. We had a seemingly unrelated plugin conflict; Feedblitz which hasn’t been updated in over three years. Deactivated then removed the plugin and buyers now see the confirmation message upon submitting information to PayPal.
I do have an observation related to the payment submission; once PayPal information has been entered the cart page is displayed and half greyed out. If the user scrolls up they then see a “spinning wheel” which to some indicates the page is busy completing financial transaction. What can we do to make this more apparent that the page is working to complete the transaction?
Thank you,
Correct. I would like to show the slider gallery when the link is clicked. And, I would like to show the gallery in a modal. When the link is clicked and jQuery changes the target ID to class show, will it display in a modal?
@bradvin,
Please advise how to create a hidden slider gallery, revealed in a FooBox with text link?Thank you
Thank you @bradvin,
My goal is a hidden ACF gallery, of template slider, displayed in a FooBox, on click of a text link. This is my current markup:
<a class="single-home-photos footrigger" href="#foohiddengallery">Photos</a> <div id="foohiddengallery" style="display: none;"> <?php $image_ids = get_field('listing_gallery', false, false); $shortcode = '[' . 'gallery link="file" attachment_ids="'.implode(',', (array)$image_ids).'"]'; echo do_shortcode( $shortcode ); ?> </div>
So far so good. The only thing missing is the FooGallery Slider Template. I’ve been challenged figuring out the combination of FooGallery and FooBox. If you could advise on how to take this concept to the next level and display the FooGallery Slider on click. I’d greatly appreciate.
Thank you,
Ok, got the images to show. I’m a little unclear on assigning a gallery for dynamic display. It seems like I should be able to assign a gallery template and be good to go. But the display is wacked! Am I supposed to generate an “extension” then define the styles?
$image_ids = get_field(‘listing_gallery’, false, false);
$shortcode = ‘[foogallery id=”2023″ attachment_ids=”‘.implode(‘,’, $image_ids).'”]’;
echo do_shortcode( $shortcode );- This reply was modified 6 years, 2 months ago by brandbarron.
I’m not there yet, but I think I’m getting close:
$image_ids = get_field(‘listing_gallery’, false, false);
$shortcode = ‘[foogallery’ . ‘attachement_ids=”‘ . implode(‘,’, $image_ids) . ‘]’;
echo do_shortcode( $shortcode );This returns a list of image IDs. I’m thinking theres an extra step to query the IDs to get the url, assign a variable, then feed that to the shortcode.