crowds90
Forum Replies Created
-
Hi,
Yes there is a close button which I hid (https://ibb.co/2gtXbSD) but didn’t there also use to be a close icon which would overlap my hamburger icon when the menu was open?
Forum: Plugins
In reply to: [WooCommerce Cloak Affiliate Links] Importing issueHere is half of an example. So after importing, one of my products was given this product_url from cloaking “https://thesalestop.com/spartans/2096418/”(https://imgur.com/FzH3PBR). The problem is if I import this product tomorrow to update some fields it will create a whole new cloaking product_url instead of just updating this one.
Forum: Plugins
In reply to: [WooCommerce Cloak Affiliate Links] Importing issueWP All Import Plugin
Forum: Plugins
In reply to: [Featured Image from URL (FIFU)] Images Stopped Showing on Product PageIts all good now
- This reply was modified 6 years, 2 months ago by crowds90.
Forum: Plugins
In reply to: [Featured Image from URL (FIFU)] Images Stopped Showing on Product PageIt was Lazy Load option
- This reply was modified 6 years, 2 months ago by crowds90.
I have same problem
Forum: Plugins
In reply to: [WooCommerce] More Products in ” ALL” then “PUBLISHED” ProductsHi,
But you have a product that is scheduled. I don’t have that https://ibb.co/escEvz.
Plus if I am in my published products area and I delete my last page of products (so for instance page 720 in the link) when the page reloads it will keep page 720 displaying no products and show my last page at like 1400. Then if I went to page 719 the pages >719 would go away again.
So I personally don’t think it has to do with not being published. To me it’s more like they are deleted but still showing.
Forum: Plugins
In reply to: [WooCommerce] More Products in ” ALL” then “PUBLISHED” ProductsHi,
Thanks for the response. I did all 3 and didn’t seem to work.
Forum: Plugins
In reply to: [Responsive Tabs] Mobile TabsIt was a css problem on my side.
Sorry off topic. @marahmanb2b were you ever able to figure out the answer for this?
https://www.ads-software.com/support/topic/yoast-not-truning-green-untill-click-on-edit-page/
Sorry and Thanks.
Forum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] Change urlHi,
Yes I later noticed this section but for some reason it is all blurred out and won’t let me click on it.
Forum: Plugins
In reply to: [MojoPlug Slide Panel] Hide on pages except WoocommerceI figure out to hide specific pages for who ever else needs it. This worked for me
.page-id-880 #mojo-sp-right-wrap, .page-id-471 #mojo-sp-right-wrap { display:none !important; }
Forum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] CSS changesAwesome! Thank you.
For number 3. I am referring to the results text color if you could help me out. Thanks again
Sorry I am not very skilled with this stuff. How do I run the “_scheduleExpiratorEvent($id,$ts,$opts)” or build the “opts” array?
In another post someone seemed to get this code working with WP All Import plugin:
add_action('pmxi_saved_post', 'post_saved', 10, 1); function post_saved($id) { $expiration_date = get_post_meta($id, 'expiration-date', true); if ($expiration_date) { $opts = array(); $opts['expireType'] = 'delete'; $opts['id'] = $id; echo "Setting expiration date for post " . $id . " to the timestamp " . $expiration_date; _scheduleExpiratorEvent( $id, $expiration_date, $opts ); } else { echo "No expiration date set for post " . $id . ". Exiting"; } }
The problem is
add_action('pmxi_saved_post', 'post_saved', 10, 1);
is part of WP All Import and I am using Woocommerce CSV Importer. Is it possible to get this to work without that part? Let me know. Thanks- This reply was modified 7 years, 5 months ago by crowds90.
Hi Aaron,
Thanks for getting back on the support forum. I noticed you updated the plugin. I am having an issue though. I import using the custom fields of “_expiration-date-status > saved” and “_expiration-date > 1496112420”. So it imports properly but it won’t actually delete/draft after the expiration time. This seems to be a problem with the cron which is what people seem to say. How to fix this? Thanks