madturki
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce POS - Point of Sale] Variable Priced Barcode SupportIt was a separate download that unlocked some features but I can’t remember which ones.
It wasn’t worth fixing for me… We did some patches just to get it connecting but after that, there were massive permission issues. Only one user’s account was working and we had to compromise security and share that account. And then it stopped working, and another account started working. It wasn’t going to be worth it to chase this problem down.
The client was cheap and decided to just keep mucking about with “whose account will work today.” I stopped working with the client shortly thereafter after five years… They didn’t want to spend the $30/m or whatever it was for the other system. The POS was processing 7 figures annually…
Forum: Plugins
In reply to: [WooCommerce POS - Point of Sale] Variable Priced Barcode SupportI think support stopped a while ago on this product. I purchased the Pro version a year ago and just don’t get any replies and I have bugs with the new version of WooCommerce. I recommend finding a different plugin. It’s too bad because this was actually decent when it worked and had support.
Forum: Plugins
In reply to: [Simple Author Box] PHP CodeAfter enabling this, how can I choose which author I want to show? What if I want an author’s info on the contact page for example?
Thanks
Forum: Plugins
In reply to: [YITH WooCommerce Recently Viewed Products] Shows out of stock productsThe famous developer reply “It works on my machine!”
We only use stock status and not quantity. Do I also need to set quantity?
Forum: Plugins
In reply to: [Enhanced Media Library] Output attachments by categorySorry, no! This actually isn’t getting by category yet. If I enter in ‘category_name’ as an option I get nothing returned.
Forum: Plugins
In reply to: [Enhanced Media Library] Output attachments by categoryThanks Nadia,
I meant on the front end. For some reason no posts were being returned when I first tried get_posts. In the end this worked for me:
$args = array( 'post_type' => 'attachment', 'posts_per_page' => -1, 'post_status' =>'any', ); $attachments = new WP_Query($args); if ($attachments) { foreach ( $attachments->posts as $attachment ) { echo '<br>' . wp_get_attachment_url($attachment->ID) ; } }
Thanks!
Forum: Plugins
In reply to: [AWD Weight/Country Shipping for WooCommerce] not workingBOOM! ^^^^^
that’s the answer there for me. Thanks @creamiicandy
Forum: Plugins
In reply to: [Juiz Last Tweet Widget] Multiple widgets per pageOne more piece of information to help:
This only occurs if you have specified the same Twitter account for both areas. It doesn’t happen if you’re using two different feeds.
Forum: Themes and Templates
In reply to: [Kreativ] Seriously where is the logo…At the top of the header.php file you could add the line:
<? $pov_logo=”/wp-content/themes/kreativ/images/mylogo.gif”; ?>
But then put your logo at that path ?? That’s what I did.
Forum: Themes and Templates
In reply to: logo option missingAt the top of the header.php file you could add the line:
<? $pov_logo=”/wp-content/themes/kreativ/images/mylogo.gif”; ?>
But then put your logo at that path ?? That’s what I did.