coadr93
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Watermark] Only WooCommerce Full_SizeHey ?? I’ve set the Media Gallery to list and added a rather suspicious plugin to filter by Post Type (products). It has very few installs but it works.
I’ve set view for 250 images. If I try more, the Bulk Watermark fails.
I only have 160 pages to do, which is doable ?? Will probably take 2 clicks every few minutes while working on other stuff, should be done in a day.
Forum: Plugins
In reply to: [Product Watermark for WooCommerce] Only WooCommerce Full_SizeMight have confused plugins, sorry! ??
Forum: Plugins
In reply to: [Product Watermark for WooCommerce] Only WooCommerce Full_SizeHi, Razy.
From what I can see, it actually watermarks everything, regardless if it is attached to products or not…
Is there any way I can limit the bulk optimization only to products, full size image?
Thanks.
- This reply was modified 3 years, 5 months ago by coadr93.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Multiple reference in templateThanks for the update and for your work, Scott!
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Multiple reference in templateHey, Scott. Thanks! ?? You guys are doing a great job! I hope I will be able to help at some point with the documentation but I’m still learning Pods myself.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Multiple reference in templateHey, Jory! Thanks for your reply.
Can you link me to any documentation that might be helpful for PHP pods template?
I’ve been browsing the pods.io website but mostly 404s or pages that have no content…
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Multiple reference in templateOk, here’s how I achieved it… but it’s not elegant at all ??
<ul id="stocksymbols"> [pods name="taxonomy_name_cities"] [if include_in_tax_query_custom_field] <li>{@name}</li> [/if] [/pods] [pods name="post_type_name_location"] [if single_in_city_custom_field] <li>{@name}</li> [/if] [/pods] </ul>
Then I used JS I found online to reorder the items Alphabetically, since they are all in the same UL.
<script> function sortList(ul) { var ul = document.getElementById(ul); Array.from(ul.getElementsByTagName("LI")) .sort((a, b) => a.textContent.localeCompare(b.textContent)) .forEach(li => ul.appendChild(li)); } sortList("stocksymbols"); </script>
So basically…
1. I am querying the taxonomy terms and posts separately then merging them and reordering them via JS.
2. To exclude one taxonomy I am using a Y/N custom field on taxonomies. This is also not elegant since I have to set all the terms I want to include to Y and the term I want to exclude to N.
3. To include only the posts inside the excluded taxonomy I am using another Y/N custom field.I certainly hope there is a better solution to this…
So what I’m looking to achieve is Exclusion Rules (for the taxonomies) and Inclusion Rules based on taxonomy for posts…
I can live with sorting the <.li.> elements via JS.
Thank you and I hope you have some ideas.
Forum: Plugins
In reply to: [WooCommerce] Facebook URL Parameters IssuesHello. I understand but removing the URL is not enough.
It includes database prefix, all plugins, the theme, server type, type of database… it could be easily correlated with my user here to point to my client.
I don’t consider this info should be public so unless there is a secure way to send this I prefer not to.
www.ads-software.com should have a section to include sensitive information which only the developer should see.
On another note, I couldn’t find Marketing > Facebook. I only have Marketing > Coupons.
I’m not using the official Facebook Pixel plugin for WP.
I’ve discussed with my payment provider and their plugin adds a parameter to the order URL which is mandatory for their plugin to work, which Facebook detects as violating health data, even though they only contain random numbers and letters.
It seems like I have to resolve this issue with Facebook instead…
If not, I will come back to see how I can force any parameters from WooCommerce order confirmation URL to be removed and how this would affect WooCommerce.
- This reply was modified 3 years, 6 months ago by coadr93.
Forum: Plugins
In reply to: [WooCommerce] Facebook URL Parameters IssuesIs there any way I can send this data in a confidential manner?
It includes things that could pose a security issue.
Thank you.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Gallery field export importHey guys.
Thanks for your responses.
I asked the WP All Import team and this was their response:
“Is the gallery a “File / Image / Video” field that allows multiple files? If so, you can import into it by importing images regularly and writing custom code that uses our API ( https://www.wpallimport.com/documentation/developers/action-reference/ ) to store the images as required by Pods.
Here’s an example snippet that you can modify as needed:”
function wpai_pods_image_imported( $post_id, $att_id, $filepath, $is_keep_existing_images = '' ) { $pods_field_name = 'the_image_gallery'; $existing = get_post_meta( '_pods_' . $pods_field_name, array() ); if ( in_array( $att_id, $existing ) ) return; $existing[] = $att_id; add_post_meta( $post_id, $pods_field_name, $att_id ); } add_action( 'pmxi_gallery_image', 'wpai_pods_image_imported', 10, 4 );
Is this helpful? Think you can help me customize this so that it works to import Gallery Images in PODS with WP All Import?
Thanks
Ok, now firebase sends me the texts, but each time I enter them, it says verification failed.
Authenticator app works, so does email. Only SMS one does not work.
George, hi. Thanks for answering. I did that already, checked multiple times, recreated the project multiple times. Settings look correct. It just doesn’t send the SMS. I’ve tried multiple phone numbers from Romania. Might be a Firebase based issue?
Thank you, I’ve managed to get it to work ??
Hey. Can’t really figure this out, I’ve spent over 2 hours trying to export something.
I’m trying to export a drop down selection created with TM Extra Product Options from the Orders that users have placed, so that I know the location they’ve picked.
I’ve managaed to add the _tmcartepo_data into the export and it generates a very long line like this a:1:{i:0;a:25:{s:4:”mode”;s:7:”builder”;…….
This long string includes all the items from the drop down (not useful in my case) and also the user’s selection, but I can’t seem to find a way to isolate only the user selection and exclude everything else.
I’ve tried the cores here in functions.php https://algolplus.com/plugins/snippets-plugins/ But I’m no programmer and not sure I’ve replaced the right strings… All I get is that long seialized line which I would have to manually correct.
Any solution for this?
Forum: Plugins
In reply to: [Polylang] Hreflang ProblemI want to bump this, I’m having issues.
The hreflang attribute should be ro-RO or en-GB or en-RO instead of just ro or en.
How can I change the <link> hreflang attribute to be language + region?