trde
Forum Replies Created
-
OK, my bad. I wanted to send e-mail only to 50 persons but in my database there was 15 000 persons, and limit for free plan is 500. I don’t want to use them and also I CAN’T because they were auto-imported store accounts, not individual decided. I think this is a bad UX sollution. There should be a notification under button or just let me send newsletter only up to 500 persons even if in my database is more than 500 accounts.
OK nevermind, I already done this with other plugin.
Forum: Plugins
In reply to: [Meta for WooCommerce] Wrong conversion value, missing comma.OK I think I found the problem. There is a BUG in your plugin. In /wp-admin/admin.php?page=wc-settings you can’t add comma as a decimal separator. Changing it into dot should fix the problem. But you guys have to fix that, because some currencies need that.
Yes. Same here. I think it is global error. We can’t create feed on 5 different shops. Also strange things are happening when trying change feed type. Look at this video: https://drive.google.com/file/d/19vkoPZnQbkaJAZPf5abrXHW9w4cD5oQD/view?usp=share_link
- Latest WooCommerce
- Latest version of WordPress
- Plugin updated
- PHP 7.4
OK, napisałem. Dzięki za chęci. W treści maila masz obecną konfigurację.
Apache, wersja PHP 7.4.19
Forum: Plugins
In reply to: [WooCommerce] Allow Author to edit products and categoriesI do not trust third-party plugins like this one. One bug and all data can leak from the shop. I preffer to add some code in my functions.php file.
I was trying to add remove_submenu_page() for example:
remove_submenu_page('woocommerce', 'wc-settings');With user ID conditional. But this option only hides menu, user can still visit this page if he type the correct URL in browser address bar. So this is completely not safe way to do that.
Any other ideas?
It can be also condtitional for specific user ID, not role.Hmm… all posts returns “null” by default. I need to set it manually and that is very bad UX. Posts on my page are created by users as drafts. Then admin need to publish them. I can set the rating by myself every time I publish drafts but how to set default post rating = 5/5 without setting this manually on the backend? It has to be automatic.
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Multi Lingual WebsiteI also looking for informations about this. Any ideas?
Forum: Themes and Templates
In reply to: [Twenty Twenty] Removal of H1 entry-title textDon’t use CSS do hide/delete elements. It’s not good way to do that. Better go to:
/wp-content/themes/twentytwenty/template-parts
find file entry-header.php open it, and delete entire content. Save the file, and that’s all.Forum: Plugins
In reply to: [WooCommerce] Product variations with different linksThanks for reply.
I have this code now in my functions.php:add_action( 'woocommerce_product_after_variable_attributes', 'gdy_add_wc_varition_permalink', 100, 3 ); function gdy_add_wc_varition_permalink( $loop, $variation_data, $variation ) { echo '<a href="' . get_permalink( $variation->ID ) . '" target="_blank">' . __( 'Permalink for this variation' ) . '</a>'; }It shows permalink of each variations in my admin dashboard. Now I just need something similar but on product page to redirect user always when he select different variation. Maybe some JS could help here?
Forum: Plugins
In reply to: [WooCommerce] Product reviews missingThe problem was I did not seen option to enable reviews on specific product. I was sure there is global switch to eneble it. Now I know I can enable reviews global, and also on specific product.
Forum: Plugins
In reply to: [WooCommerce] Display orders on custom page – publicYeah, stackowerflow is always helpfully. 😁
Forum: Plugins
In reply to: [WooCommerce] Display orders on custom page – publicOK, that is cool. I want to write wp_query to print orders on my custom public page. Orders should be categorized by city: “London”, “Berlin”, “Paris” so I think I could use this plugin https://woocommerce.com/products/woocommerce-checkout-add-ons/ to let user select the category of the order. But does it possible to print orders with specific city variable, on specific city category page?
Forum: Plugins
In reply to: [WooCommerce] Photos from Adobe StockNot sell photos, but create store where every user could crop the image and order interior wallpaper. Then we print this wallpaper and send to customer. jCrop should do the job http://deepliquid.com/content/Jcrop.html but I wonder how can I add this cropped image as attachment and also how to display products as Adobe Stock photos. I think Adobe API is necessary here.