primisdigital
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Featured Video] Youtube-Vimeo SupportWe are considering the same, it will be available in next version
- This reply was modified 4 years, 7 months ago by primisdigital.
we have released the new version, please update now
Forum: Plugins
In reply to: [Post Type Slider] Set amount of posts showed on the slider?In each slider , there is a slider options section, there you can set number of slider
Forum: Plugins
In reply to: [Simple Featured Video] Safari issue with editor from nonceHi Thank you for the detailed explanation.
That’s not breaking your code.Forum: Plugins
In reply to: [Simple Featured Video] Resizing/aligning featured video.Hi,
You can use css to style those things. i simply used html video tags, so each group have its specific id, based on provided div ids. you can use those ids, and provided classes to style things.
- This reply was modified 4 years, 10 months ago by primisdigital.
Forum: Plugins
In reply to: [Simple Featured Video] Warning appears in page editor after activationHi,
Thank you for the comments.
are you Sure that this warning appears due to our plugin?
Forum: Plugins
In reply to: [Post Type Slider] Is there a way to disable the click and drag function?If you just want to remove the drag feature on the slider, please follow below steps:
1. Go to Plugins folder, select post-type-slider
2. Go to assets >> js folder
3. Open myscript.js
4. After line 33, add this : touchEnabled: falseSo the jquery function will be like :
jQuery(“#”+some_variable_value).bxSlider({
auto: JSON.parse(autoplay),
speed: parseInt(slide_moving_speed),
minSlides: 1,
maxSlides: parseInt(slide_num),
//moveSlides:parseInt(slide_move_by),
slideWidth: parseInt(slideWidth),
slideMargin: parseInt(margin),
infiniteLoop:JSON.parse(loop),
autoHover:JSON.parse(pauseonhover),
controls:JSON.parse(navigation_arrows),
pager:JSON.parse(navigation_dots),
touchEnabled: false
});, Please save and check the pages.
We will consider this option in our next update.
Forum: Plugins
In reply to: [Post Type Slider] Is there a way to disable the click and drag function?Could you please send the link of page in which slider implemented
Forum: Plugins
In reply to: [Post Type Slider] Links in slider half-workHi,
Sorry for the late reply, can you please share the site link here, so i can check and update you..
plugin customized like link in a separate button as read more did you enabled that button on plugin settings.Forum: Plugins
In reply to: [Simple Featured Video] Video doesn’t appearFrom the plugin settings page, please select “automatically post after post contents” to display video under contents, or you need to add the shortcode [sfv_video_show] in your query post to display the video.
help link : https://ps.w.org/simple-featured-video/assets/screenshot-1.png?rev=2170384
Forum: Plugins
In reply to: [Simple Featured Video] Video doesn’t appearHi, Thank you for using the plugin. Please let us know whether you selected automatic option or shortcode option to display the video on the front end
Forum: Plugins
In reply to: [Simple Featured Video] it doesn’t work on my woocommerce product pageThank a lot. Please feel free to share your feedback and we will work on the improvement
Forum: Plugins
In reply to: [Simple Featured Video] it doesn’t work on my woocommerce product pageTo add below image gallery section use the following code :
add_action( ‘woocommerce_before_single_product_summary’, ‘add_text_after_excerpt_single_product’,9);
function add_text_after_excerpt_single_product(){
global $product;
echo ‘<div class=”woocommerce-product-video” style=”margin-top:20px;”>’;
echo ‘<div style=”clear:both”>’.do_shortcode(‘[sfv_video_show]’).'</div>’;
echo “</div>”;
}Forum: Plugins
In reply to: [Simple Featured Video] it doesn’t work on my woocommerce product pageadd the following code in the below file :
Plugins >> simple-featured-video >>simple-featured-video.php
At the bottom add following code:
add_action( ‘woocommerce_before_add_to_cart_form’, ‘add_text_after_excerpt_single_product’, 25 );
function add_text_after_excerpt_single_product(){
global $product;
// Output your custom text
echo do_shortcode(‘[sfv_video_show]’);
}
then it will be displayed automatically on your product page
We will update the plugin soon