Supriya_Kadam
Forum Replies Created
-
Forum: Plugins
In reply to: [Portfolio Showcase] Description not showingHello Mon,
I am happy for you. By using css you make featured image center. add the margin:0px auto; to the feature image class. Hopefully it works.Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] How to display upcoming widget in pageThanks cefiar, Widgets In Pages plugin solve my problem.
Thanks for reply. After installing deactivate and then activate plugin work fine and thanks for such plugin. But i have one problem that everything work fine extra amount add to total amount but in mail this extra amount details not added then how can i add extra amount detail in mail. Please help me.
Thank you
Thanks for reply and sorry for my contradicting statement. ??
Now i am using only one shipping method that is weight based shipping. And i want to add conditional extra amount which added to final wight based shipping amount.
Then how and which file modify to add conditional extra amount.Thank you for help. I am tring to solve by modifing plugin file but one of the shipping amount not added at time . Can you help me to solve this problem.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Today's events are not displayedHello Jashan,
After updating All-in-One Event Calendar plugin i solve my previous problem but this will occur new problem that this plugin not compatible with my other plugin e.g. Social connect plugin.
Before updating All-in-One Event Calendar it works with same plugin. Please help me how to solve this problem.
Thank you.Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Today's events are not displayedhello cefiar,
My problem is solve by updating the plugin.
Thanks for your help.Forum: Plugins
In reply to: [Portfolio Showcase] Description not showingHello dzweb84,
Above code write in portfolio-showcase.php In that file you find
<div id=”portfolio-modal” …..> in that div you write the code what you want.I think to show recommendations on site it takes 20hr may be i am wrong. Now my website shows recommendations but recommendation shows pages and i want post also want to hide recommendations attribution link and how many recommendations i will display on sites?
ThanksHello ,
I have same problem, my Recommendations is not working, it says processing on plugin setting page and nothing happen on my site. I am enable only post. My site url is https://kolhapurworld.in/sw/
Please help to resolve this problem, thanks.Forum: Plugins
In reply to: [Portfolio Showcase] Description not showinghello Ianhub,
I am solve my problem by modifying the plugin file portfolio-showcase.php In that file you find
<div id=”portfolio-modal” …..> in that div you write the code what you want. Suppose if i want to display post content with my image then i will write code as below : `<div id="portfolio-modal" > <?php ps_post_thumb(array(700,500), true, array('class'=>'img-rounded ml15'));?> <div class="media-body"> <h3><?php the_title(); ?></h3> <?php echo port_post_excerpt(); ?> </div>
i have add the custom function port_post_excerpt(); in same file which show the content of post as a image description.
function port_post_excerpt(){ global $post; $content = $post->post_content; echo $content; }
Result shows the image with its description
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Next & Previous FunctionHello,
I want prev, next navigation to my images where we insert image/ iframe insert manually. Then how can achieve pre/next navigation?
Forum: Plugins
In reply to: [Portfolio Showcase] Description not showingHello,
Same problem, the image is displayed but not the description. Please help us to solve this problem.Forum: Plugins
In reply to: [WooCommerce] Shipping Charges according OrderFinally i got answer…
If you add different shipping charges according to product category then you need to create shipping classes. Add those shipping classes with amount in additional rate which in Woocommerce->Shipping -> Flat Shipping
tab.
And according to your condition you can hide or show shipping classes.
To hide or show shipping class you can write code in your theme function.php Also you show only one method which satisfy your condition.e.g. If i want to hide other shipping method when shipping method are available then code become
// Hide standard shipping option when free shipping is available add_filter( 'woocommerce_available_shipping_methods', 'hide_standard_shipping_when_free_is_available' , 10, 1 ); /** * Hide Standard Shipping option when free shipping is available * * @param array $available_methods */ function hide_standard_shipping_when_free_is_available( $available_methods ) { if( isset( $available_methods['free_shipping'] ) AND isset( $available_methods['flat_rate'] ) ) { // remove standard shipping option unset( $available_methods['flat_rate'] ); } return $available_methods; }
Forum: Plugins
In reply to: [WooCommerce] How to add rating for productsi got answer if anyone write review of particular product with rating then rating will display on product page and according to all review rating display on product page.