ywickham
Forum Replies Created
-
Forum: Plugins
In reply to: [Reusable Text Blocks] Adding CSS ID or Class to target shortcode outputI was able to get around this slightly by creating a template based on your instructions here:
But in order to not make the client add additional attributes to the shortcode (so they could just copy/paste what the plugin tells them to for the shortcode) I had to modify a few lines in your plugin. I’d prefer a different – better – solution if you have one. 🙂
Thanks!
Forum: Plugins
In reply to: [Gallery Slideshow] Set size of ThumbnailsThanks! But I ended up going with another slideshow instead.
Forum: Plugins
In reply to: [Easy Image Gallery] Possible to set to autoplay?I was just testing it Andrew. 🙂
It sure looks like it was custom. I archived the existing plugin and redownloaded yours… clearly displaying differently.
I’ll mark this issue closed and work on finding them an actual slideshow plugin.
Thanks!
Forum: Plugins
In reply to: [Easy Image Gallery] Possible to set to autoplay?Huh. That’s interesting, cause when I deactivate the Easy Image Gallery slider on the website, the top slider disappears. I’m picking up this site after someone else, so it may be they rewrote some of your code… I’ll have to see what is going on and get back with you on it. Thanks for checking in.
Forum: Plugins
In reply to: [Easy Image Gallery] Possible to set to autoplay?prettyPhoto. You can see the page with the gallery here:
http://staging.myfrenchlife.org/2014/11/20/coffee-in-paris-conundrum-marvel-or-brewing-concern/
Forum: Plugins
In reply to: [Easy Image Gallery] Possible to set to autoplay?Just following up on this to see if anyone knows how to get the gallery to autoplay.
Thanks!
Please disregard. I found the following snippet to shorten the excerpt and modified it to work with what I needed:
https://gist.github.com/billerickson/1179950
Thanks!
Forum: Plugins
In reply to: [Advanced post slider] autoplay not working ; autoplay no funcionaI have nothing to add as a solution, but that I’m having the same problem.
Any ideas what’s going on?
Forum: Plugins
In reply to: [Custom Content Type Manager] Image custom field bug after WP 4.0Not to hijack a thread, but what is the likelyhood this developer is going to correct this bug in the next release? I’d like to fix this for a client, but would hate for the fix to get overwritten without it actually being fixed in the release.
Thanks!
Forum: Plugins
In reply to: [Firelight Lightbox] Uncaught TypeErrorThank you! If I wasn’t in such a rush, I should have caught that. I appreciate your help.
Forum: Plugins
In reply to: Show Woocommerce product tabs for only logged in usersDanalee –
Did you ever figure this out? I’m getting ready to need the same thing shortly.
Best,
YazminForum: Plugins
In reply to: [Multiple content blocks] Provide working example with argumentsNever mind – Just answered my own question. 🙂
$title_block = get_the_block('Alternate Title', 'type=one-liner');Forum: Themes and Templates
In reply to: [Story] Child theme loses color scheme stylingNo apologies needed!
It does seem to have something to do with the function name. I changed the function name in the code as follows and now it seems to work just fine:
<?php function story_child_css() { wp_enqueue_style( 'story-color', get_template_directory_uri() . '/css/'. get_theme_mod( 'color_scheme_select', 'turquoise' ) .'.css' ); } add_action( 'wp_enqueue_scripts', 'story_child_css' );Thank you for your help, Stephen and Andrew. I appreciate it!
Forum: Themes and Templates
In reply to: [Story] Child theme loses color scheme stylingThat works fine with no errors. And when I take the above code and replace the function name with ‘foo’, we’re back to the same error as before.
So it seems that the issue is with the content of the function… Ideas?
Forum: Themes and Templates
In reply to: [Story] Child theme loses color scheme stylinglol Andrew