vickiejv
Forum Replies Created
-
Forum: Plugins
In reply to: [Payment Plugins for Stripe WooCommerce] Style issuesThank you very much for the quick reply!
I changed my store location in Woocommerce, thanks for looking into that too. Unfortunately the php code did not change the orange. Also tried adding !important to #000, clearing my cache and no luck.
Glad to know the additional styling will be included in the next release! I will wait for that if it’s not possible now ??
Thank you !
Forum: Plugins
In reply to: [WP Gallery Custom Links] Links Not WorkingOh, and theme is a customized version of Hyphen by zigzagpress, running on Genesis framework
Forum: Plugins
In reply to: [WP Gallery Custom Links] Links Not Working(yngspc.com/artists to see the sidebar with gallery!)
Forum: Plugins
In reply to: [WP Gallery Custom Links] Links Not WorkingHey, the site is up at yngspc.com
The gallery is in the ‘Recommended reads sidebar widget’, I wanted to link them to amazon.
Thanks again!
Forum: Plugins
In reply to: [WP Gallery Custom Links] Links Not WorkingThanks for the quick response! Yep, I’m working locally but give me 15 minutes I will make the site live.
Forum: Plugins
In reply to: [WP Gallery Custom Links] Links Not WorkingThanks for the quick response! Yep, I’m working locally but give me 15 minutes I will make the site live.
Plugin list:
<br />direct link upload images<br />
Forum: Plugins
In reply to: [WP Gallery Custom Links] Links Not WorkingHey, I am having the same problem. links not working, still linking to my media pages.
I did have to apply this :
$output = apply_filters(‘post_gallery’, ”, $attr);
if ( $output != ” )
return $output;to the first function in the plugins js file for the options to even show up.
Help is greatly appreciated!
Forum: Plugins
In reply to: [WP Gallery Metabox] How to display images on pages?Hey Radu,
Thanks, I’ve got ACF open now ??
Cheers,
Vickie
Forum: Plugins
In reply to: [WP Gallery Metabox] How to display images on pages?Hey there, I have the same question.
Where do I insert the code above? I am running on genesis and have added this to my functions.php in an effort to output gallery images. I’d like the ability to format them using html markup. Help appreciated ?? thanks
//IMAGE GALLERY ON POST PAGES
add_action( ‘genesis_before_content’, ‘single_post_gallery’, 5 );function single_post_gallery() {
if ( ! is_singular( ‘post’ ) )
return;$post_id = get_the_ID();
$result = get_post_meta($post_id, ‘vdw_gallery_id’, true);
print_r($result);}