btees
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Reply-to doesn’t work anymore in GmailI’m still seeing this issue on a number of my sites.
I’m using Gsuite.
Setting the from field to a non-alias address hasn’t worked for me (My from address has been [email protected] for years)
What has worked for me is setting the From field to [your-email] <[your-email]>
Can anyone see any issue with this? I’ve set filters in my gmail accounts so it won’t be flagged as spam there, but will there be any other issues?
- This reply was modified 7 years ago by btees.
Haha, ok, the wordpress forum is converting the special characters I put in.
The plugin is outputting the single quote as & #039
I get the same results using property_type.
It seems that for some reason if a per_page value isn’t set it’s only showing a very small amount of only one property type (Sales in this case)
I’ve set it to 500, which seems to be a good enough work around in my specific case
Forum: Plugins
In reply to: [Video Popup – Video Lightbox for YouTube, Vimeo & MP4] No autoplayAutoplay for soundcloud (via the embed code from soundcloud.com) still works in chrome but not in this plugin.
If you replace:
<iframe src="https://MYWEBSITE.COM/?vp_soundcloud=https://soundcloud.com/MYSOUNDCLOUDACCOUNT/EPISODENAME&auto_play=true" allowfullscreen="" allow="autoplay"></iframe>
with:
<iframe allow="autoplay" src="https://w.soundcloud.com/player/?url=https://soundcloud.com/MYSOUNDCLOUDACCOUNT/EPISODENAME&auto_play=true"></iframe>
It works.To that end replace line 137 in /js/YouTubePopUp.jquery.js with:
var iframe_element = '<iframe allow="autoplay" src="'+data_embed_sc+'" allowfullscreen></iframe>';and line 137 in /features/shortcode.php with:
$embed_sc_url = 'https://w.soundcloud.com/player/?url=' . $atts["url"] . $sc_auto;and line 129 in /features/shortcode.php with:
$sc_auto = '&auto_play=true';Note to people who aren’t the plugin developer: If you’re making the above changes you’ll likely need to rename the video-popup plugin folder and then re-enable the plugin as the .js file above seemed to be cached otherwise and your changes won’t take effect.
- This reply was modified 7 years, 2 months ago by btees.
It might be worth mentioning somewhere in the documentation that you don’t support something as common as a comma.
Widget Configuration:
http://i65.tinypic.com/bip7xt.pngSetup of specific property listing:
http://i65.tinypic.com/2qvy2i9.pngArea Dropdown:
http://i66.tinypic.com/dpuu4l.pngThe default search url the widget creates is:
http://mysite.com/listings/?wpp_search%5Bpagination%5D=off&wpp_search%5Bstrict_search%5D=false&wpp_search%5Bproperty_type%5D=sold%2Csales%2Clettings&wpp_search%5Barea%5D=Dalkey%2C+Co.+Dublin&wpp_search%5Bprice%5D%5Bmin%5D=&wpp_search%5Bprice%5D%5Bmax%5D=&wpp_search%5Bbedrooms%5D%5Bmin%5D=&wpp_search%5Bbedrooms%5D%5Bmax%5D=This results in no results:
http://i65.tinypic.com/2us8yo1.pngWhen the Area selected in the dropdown does not contain a comma, it displays results.
Likewise if you manually replace the url encoded comma (%2C) in the search query above with a space (%20) you get the expected results:
http://i63.tinypic.com/ic4k0o.png
- This reply was modified 7 years, 3 months ago by btees.
Thanks for the info
Hi @a2withkids how did you set up your payment system?
Is it through another plugin or by customizing php on event manager?
Forum: Plugins
In reply to: [Subscriber Discounts for WooCommerce] Exclude sale itemsThe issue is that you’ve used the value ‘exclude_sale’ where you need to use ‘exclude_sale_items’.
When I change the value in create-discount.php it solves the issue.
Forum: Plugins
In reply to: [Subscriber Discounts for WooCommerce] Exclude sale itemsCuriously if I look at the coupon meta in the database exclude_sale has a value of yes. But it’s not ticked on the wordpress backend and the coupons are still usable with sale items.
Forum: Plugins
In reply to: [Subscriber Discounts for WooCommerce] Exclude sale itemsHi Scott,
I’ve enabled the option in the plugins settings but it doesn’t seem to take effect when a new coupon is created.
Forum: Plugins
In reply to: [Subscriber Discounts for WooCommerce] Exclude sale itemsWow, speedy update. thank you so much.
Forum: Plugins
In reply to: [WooCommerce] Price, Sale Price not saved in postmetaA further note:
Changing the regular and/or sale price of variables also reflects on the frontend but not on the database under _max_variation_regular_price, _max_variation_price, _max_variation_sale_price, _min_variation_regular_price, _min_variation_regular_price, _min_variation_price etc.
Forum: Plugins
In reply to: [Woocommerce Products Price Bulk Edit] Products and categorys are not showingI’m having this same issue
Forum: Plugins
In reply to: [WooCommerce Display Products by Tags] Tag CombinationsI know it’s ages ago, but in case anyone else is looking for it.
I believe what you’re looking for is something like:
I have lots of red products and I have lots of big products, but I only want the shortcode to show products that are both big AND red.
In that case use this shortcode:
[product_tag tags=”big, red” operator=”AND”]