Philipp
Forum Replies Created
-
Forum: Plugins
In reply to: [Koko Analytics] Tracking Data missing for blocks of days (Cache Issue?)Thanks @lapzor for getting back to me. Exactly in the same minute I followed up here: https://github.com/ibericode/koko-analytics/issues/70#issuecomment-1138400167
Described the issue I have there. ??
Forum: Plugins
In reply to: [Koko Analytics] Tracking Data missing for blocks of days (Cache Issue?)Hi @lapzor,
thanks for your fast answer. This is the website: https://bit.ly/3fLrk2s
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Fixed: Add Product Bundle SupportIt should just stop executing the script if the
$form
element is already there.
So it would be infrontend.js
e.g.:var $form = $( this ); if( $form.hasClass('swatches-support')) { return; } $form .addClass( 'swatches-support' ) .on( 'click', '.swatch', function ( e ) { [...]
Dear @bungeshea,
thank you very much for your reply and sorry for the looong delay in my answer. Just was able to test your suggestion but without a better result. Just rechecked and the tables are added for single sites, but the
xxx_ms_snippets
is still missing. I can imagine that the reason might be the usage of WP Multi Network plugin (https://github.com/stuttter/wp-multi-network)? Is that possible?Thank you and best regards,
Philipp
Forum: Plugins
In reply to: [WP Multi Network] Is commenting out DOMAIN_CURRENT_SITE still a requirement?I guess @jj means either
define ('DOMAIN_CURRENT_SITE', $_SERVER['SERVER_NAME'] );
or
define( 'DOMAIN_CURRENT_SITE', $_SERVER['HTTP_HOST'] );
Not sure what is better to go with. All what should be needed here is to get the domain of the current page visited.
Same here. This is breaking a lot for me and I hope to find a good solution, soon.
Forum: Plugins
In reply to: [WP-Lister Lite for eBay] Transparent background gets blackDear John & Matt,
first of all thank you so much for your great support and answers. You’ve got me to the right direction and I got exactly what I wanted:
1.) Main Product Image
As I’m using ACF and love it’s easy usage of field types, I added another field “ebay_product_image” with which I’m able to override the featured image:// Custom Product image for eBay function volcanic_custom_ebay_product_image( $image_url, $post_id ) { // If a custim eBay image is set with ACF $ebay_image = get_field('ebay_product_image', $post_id); $image_url = $ebay_image ? $ebay_image : $image_url; return $image_url; } add_filter( 'wplister_get_product_main_image', 'volcanic_custom_ebay_product_image', 10, 2 );
2.) But the png of the featured image with transparent background looks awesome in my template. So I added another shortcade to display that instead of the image returned through the filter above:
// Featured Image shortcode function volcanic_get_featured_image_process_html( $html, $item, $images ) { $product_id = $item[post_id]; $image_url = wp_get_attachment_image_src( get_post_thumbnail_id( $product_id ), 'full', false )[0]; if( !empty($image_url)) { $out = '<img class="wpl_product_image" src="' . $image_url . '" alt="main product image">'; } $html = str_replace( 'volcanic_product_image', $out, $html ); return $html; } add_filter( 'wplister_process_template_html', 'volcanic_get_featured_image_process_html', 10, 3 );
Maybe it helps someone else.
Thank you again! I’m getting close to my preferred set-up and I really enjoy working with WP-Lister.
Cheers,
Philipp
Forum: Plugins
In reply to: [WP-Lister Lite for eBay] Transparent background gets blackHi John,
thank you so much for your fast answer.
Well that would be the WooCommerce main image which is different from your question above regarding the thumbnail image in the list view on eBay.
OK, I see. But what I thought about is that there might be a filter through which I could define another image URL eBay will use for the product image instead of the WooCommerce image.
Let’s say I keep my product images on the website as they are but add a custom field to each product (e.g. ‘eBay_image’) and wp-lister uses that image for the listing instead of the regular WC one.I hope that clarified what I mean and thank you in advance!
Philipp
Forum: Plugins
In reply to: [XML Sitemap & Google News] Support for Cyrillic/Russian lettersDear @ravanh,
thank you so much for your kind answer and support. I really appreciate it.
Somehow this solved itself by doing nothing. So everything seems to be fine.Best regards,
Philipp
Forum: Plugins
In reply to: [XML Sitemap & Google News] The SEO Framework support@cybr thanks vor your answer and the snippets. That was quite fast! ??
If there is a hook/filter I can use for the sitemap plugin, I would be able to check against the SEO settings and just output the sitemaps items if
$noindex == '0'
. That would be quite helpful. Especially I do not have to adjust the plugin code after updates.@ravanh I just found the ‘xmlsf_allowed_domain’ filter. Might this be the best start?
Thank you both! It would be a great combination with your plugins.
Best!
- This reply was modified 7 years, 7 months ago by Philipp.
Forum: Plugins
In reply to: [Canonical Attachments] Please continue the development! :)Hi there!
Amazing, thank you for the update. Just noticed a PHP error in the Dashboard:Notice: Undefined variable: media_id in canonical-attachements.php on line 210
Just wanted to let you know.
Cheers!
Philipp
Forum: Plugins
In reply to: [WP-Invites] WP Multisite doesn't save optionsThanks! Very good!
Are you planning to bring sitewide codes and options back to multisite?Best!
Forum: Plugins
In reply to: [WP-Invites] Offer to update and contributeAmazing!! Looking forward to see, test use the updates. This was always a very useful plugin and I’m very happy that someone takes care about it in the future.
Cheers!!
Forum: Plugins
In reply to: [WC Fields Factory] ask for new product field factory: image selector+1
I added a image select field by my own but that would very useful for others, too.
You might consider duplicating the select field and customizing it a bit. I can recommend using jQuery Image Picker (https://rvera.github.io/image-picker/) so it’s a minimum of work.Best!
Forum: Plugins
In reply to: [WC Fields Factory] Notice: id was called incorrectlyThank you for the very useful plugin! I do have the same issue I hope that you’re able to update it asap.