ugene
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] can i change the name of the subscribed calendarOkay. Thank You. I will check the doc
Forum: Plugins
In reply to: [The Events Calendar] can i change the name of the subscribed calendarYes I see the site title is coming in my other website.
As you know the site title is good to have. Thank you for that.
But sometimes, you want to name your calendar like “Seminal Calendar” or “Annual Meeting”
where you site could be not related to anything above e.g. “Hoteltimes.com”
So My question is – can i change the calendar name with some hooks or by any means.
Thank You.Forum: Plugins
In reply to: [Custom Price for WooCommerce] Does it support WPMLThanks for the info. Hope for its compatibility with WPML in the future.
Forum: Plugins
In reply to: [Custom Price for WooCommerce] Does it support WPMLSorry, for the confusion.
CORRECFTION HERE
WPML does not find the strings at all. My screenshot above is from another plugin domain “wc_name_your_price”
And also I gave the local link to check. My bad.
But the overall question remains the same. DOES IT SUPPORT WPML?
Note: I am using Custom Price for WooCommerce PROVersion 1.1.1 by WP Desk (Latest version: 1.2.4)
WordPress : Version6.5.4
WPML Media Version 2.7.3 by OnTheGoSystems (Latest version: 2.7.4)
WPML Multilingual CMS Version 4.6.9 by OnTheGoSystems (Latest version: 4.6.11)
WPML String Translation Version 3.2.9 by OnTheGoSystems (Latest version: 3.2.12)- This reply was modified 5 months ago by ugene.
Hi Again, I just did more test and it was not really “,” issue, rather it was a “Enter” or “line break” i suppose.
I have made a video about it, if it helps, here is the link: https://screenpal.com/watch/c0fOXfVzt35Forum: Plugins
In reply to: [YITH WooCommerce Subscription] Get all active subscriptions with PHP?Little late, but you can create your custom db query to list the subscribers and filter even only acitve members directly from SQL
Assuming your database table prefix is “wp_”function list_all_subscriptions() { global $wpdb; $query= ""; $query .= "SELECT wp_posts.* FROM wp_posts "; $query .= "INNER JOIN wp_postmeta ON ( wp_posts.ID = wp_postmeta.post_id ) "; $query .= "WHERE 1=1 "; $query .= "AND wp_posts.post_type = 'ywsbs_subscription' "; $query .= "AND ( wp_postmeta.meta_key = 'status' AND wp_postmeta.meta_value = 'active' ) "; // will filters only active members $query .= "GROUP BY wp_posts.ID "; $query .= "ORDER BY ID DESC"; // echo $query; $subscribers = $wpdb->get_results( $query ); } list_all_subscriptions();
Hope this helps.
Regards.Forum: Plugins
In reply to: [Video Conferencing with Zoom] Side bar content positionHi @namthar, basically this is responsibility of designer or theme.
Any quick good designer can see and resolve it. So, we recommend you to talk with the designer.
However, if you are doing it on your own and you are new to styling, here, please copy and paste this code in WordPress Dashboard > Appearance > Customize > Additional CSS.dpn-zvc-single-content-wrapper .dpn-zvc-col-4, .dpn-zvc-single-content-wrapper .dpn-zvc-col-8 { box-sizing: border-box; } .dpn-zvc-single-content-wrapper .dpn-zvc-col-8 .deepn-zvc-single-description img { max-width: 100%; } .dpn-zvc-single-content-wrapper .deepn-zvc-single-featured-img { margin-bottom: 0; }
This should align everything in place. Please let us know if that works.
Regards
- This reply was modified 3 years, 8 months ago by ugene.
Hi @nikolajlarsen, I am sorry. You are right, it will not work in iframe.
You need to hook on code to add those styles.Here, please add this code in your functions.php file (under active theme).
add_action('vczoom_jbh_before_content','cm_vczoom_hide_browser_meeting_info'); function cm_vczoom_hide_browser_meeting_info(){ ?> <style> #vczapi-zoom-browser-meeting--container{ width: 400px; } .vczapi-zoom-browser-meeting--info{ display: none; } </style> <?php }
Hope this helps. ??
Hi there, please try adding this style code in Dashboard > Appearance > Customize > Advanced CSS
div#vczapi-zoom-browser-meeting--container { width: 400px; } .vczapi-zoom-browser-meeting--info__browser { display: none; }
Forum: Plugins
In reply to: [WooCommerce] Number failed Checksum TestHi Thank you for your response.
I dug a little deeper and checked in more detail on this “WooCommerce Offline Credit Card Processing” plugin that was being used.
And turns out this plugin checks the card number validation pattern (for Visa, Mastercard & American Express – ofcourse set in the backend settings).
And thus the error. So, if somebody adds a wrong Credit card numbers it checks the pattern and throws error.Sorry for bothering. I should have checked this before posting here and to be honest your reply gave me some push to check it myself ??
Good Day.
Forum: Plugins
In reply to: [Drift] Drift kill my PageSpeed Insights :'(I don’t know but it has lot of requests 42 exactly in my case.
You can see this screenshot from Gtmetrix,
https://tinyurl.com/y3zzdmrb
did you get any reply.Thank you very much. It stopped loading those extra js files now.
Mostly thank you for your instant replies even though I am late.Hi there, I am sorry for late reply here is the video what is happening at my end here
https://screencast-o-matic.com/watch/cqifjxO13U- This reply was modified 5 years, 4 months ago by ugene.
Thank you for your reply. I was also thinking the same while reading some articles over the internet. Search engines are now smart enough to crawl dynamically loaded contents. Moreover we do have the anchor tag linking to the instagram feed in Instagram iteself. Bots will find that link and go for the contents.
You’ve boosted my opinion tons of thanks for that.
Though the option to choose between loading the posts in PHP or JavaScript though in the future will be a great option.
Thank you for your time. Great plugin.Best Regards.