Kiseki Studio
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Feed Gallery] Feed not showing (404 error on URL grab)I eventually managed to figure it out, it was something quite simple after all.
My clients Instagram account had an age limit enabled for people to verify in order to view the posts. Once we turned that off the posts began to display in the plugin correctly.
Hope that helps.
Forum: Plugins
In reply to: [Plugin for Google Reviews] Can support short code?I found a solution – https://casabona.org/2014/03/include-sidebar-shortcode-wordpress/
- This reply was modified 5 years, 2 months ago by Kiseki Studio. Reason: Found solution
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Allow HTML in Brand DescriptionSorry, I just realised it is under the Filter and action hooks documentation.
/** * This filter is used to allow extra * html tags in the brand descriptions */ add_filter( 'pwb_description_allowed_tags', function( $tags ){ return $tags . '<iframe>'; } );
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] flash file .swf support lightbox support?I got it to work using the Nivo Lightbox by using this method.
<a href="file.swf" data-lightbox-type="iframe" rel="lightbox">Click</a>
Hope that helps even if it’s a few months late.
Forum: Plugins
In reply to: [Contextual Related Posts] timthumb not working at allI had a very similar issue to this, it was related to the group/owner and permissions set on the timthumb folder, not related to flock(). I changed the folder owner to one with more privileges and this solved the problem for me.
Hope that helps anyone else having similar issues in future.
Forum: Plugins
In reply to: [WooCommerce] How to change Add to Cart button to a Read More button?I was also trying to figure out a way to do this, fortunately for me all the products I wanted to have the Read More button on were virtual products so I amended this part of the add-to-cart.php file:
default : if ( $product->is_virtual() ) { $link['url'] = apply_filters( 'not_purchasable_url', get_permalink( $product->id ) ); $link['label'] = apply_filters( 'not_purchasable_text', __( 'Read More', 'woocommerce' ) ); } elseif ( $product->is_purchasable() ) { $link['url'] = apply_filters( 'add_to_cart_url', esc_url( $product->add_to_cart_url() ) ); $link['label'] = apply_filters( 'add_to_cart_text', __( 'Add to Cart', 'woocommerce' ) ); $link['class'] = apply_filters( 'add_to_cart_class', 'add_to_cart_button' ); } else { $link['url'] = apply_filters( 'not_purchasable_url', get_permalink( $product->id ) ); $link['label'] = apply_filters( 'not_purchasable_text', __( 'Read More', 'woocommerce' ) ); } break;
I am overriding the Woocommerce theme with my own so I don’t have to edit the file each time I upgrade.
Not sure how helpful that is but it might give you some idea of how you could approach it for your own needs.
Forum: Plugins
In reply to: [Slideshow] Arrow Key NavigationThanks for your reply, sorry I should’ve used a different term. I was after keyboard navigation.
Forum: Plugins
In reply to: [Total Slider] Custom Template next slide issueHi Brett,
I managed to find a solution as to why the slide navigation wasn’t working. It was simple luckily, I just added the latest version of jQuery and jQuery-UI to the functions.php file using the enqueue method and it solved the problem for me.
Hope that helps.
Forum: Plugins
In reply to: [Total Slider] Custom Template next slide issueI have the same issue at the moment, did you ever find a solution?
Cheers.