megosoft
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Post Type UI] Nothing displayed while adding the CPTOmg, I am so dumb. I really apologize ??
Forum: Plugins
In reply to: [Booster for WooCommerce] The paygate fee freezeHello, thank you for a quick reply. Unfortunately, there is a maintenance mode on the site, so you can’t check it at the moment ?? I can attach the console log by screenshot, please, check: https://prnt.sc/12b0ynl
I am afraid there are no errors on the site.
The problem solved by this simple custom CSS:
body.page-id-600:not(.logged-in) .page-content { max-width:1170px; margin: 30px auto; }
You must inspect Element, at the top find <body> HTML tag and his class (page-id-000) – this is your custom number, you must detect it!!! 600 wouldn’t work on your site. The :not(.logged-in) causes, that only while user is not logged in, the .page-content width is affected
Forum: Plugins
In reply to: [Max Mega Menu] Help with setting product categories + products.I tried and get something like that, which is on the correct journey. https://prnt.sc/11ilkvy
So after hovering the SHOP, there are categories and subcategories of SHOP, that’s correct. Now how can I display few products on the right, by hovering the subcategories? So when I hover over the Hoddies it shows me 3-4 products from Hoodies category.Thank you
Forum: Plugins
In reply to: [Custom Post Type UI] Displaying hierarchical taxonomies doesn’t workLol. That’s absolutely “Rubber duck debugging” ( hint: https://en.wikipedia.org/wiki/Rubber_duck_debugging )
I have realized, the Hierarchical must be turned on not in CPT, but in taxonomy. Now it works for me ?? Sorry.Forum: Plugins
In reply to: [Custom Post Type UI] Allow users to add content from front-endAm I somehow able to include approving mechanism to this custom post types?
Forum: Plugins
In reply to: [Custom Post Type UI] Allow users to add content from front-endGood to know, that CF7 has something like this ??
However I have found something simple at stackoverflow.
Here’s a code for a form:
<?php if(is_user_logged_in()): ?> <form method="post" name="front_end" action="" class="refere" > <input type="hidden" name="title" value="<?= $current_user->user_nicename; ?>" /> <textarea id="custom_2" name="custom_2" required/></textarea> <button type="submit">Odosla?</button> <input type="hidden" name="action" value="references" /> </form> <?php endif; ?>
And here’s the simple code to process
if ( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action'] ) && $_POST['action'] == "references" && !empty($_POST['custom_2'])) { $success = false; //store our post vars into variables for later use //now would be a good time to run some basic error checking/validation //to ensure that data for these values have been set $title = $_POST['title']; $custom_field_2 = $_POST['custom_2']; $post_type = $_POST['action']; //the array of arguements to be inserted with wp_insert_post $new_post = array( 'post_title' => $title, 'post_content' => $custom_field_2, 'post_status' => 'publish', 'post_type' => $post_type ); //insert the the post into database by passing $new_post to wp_insert_post //store our post ID in a variable $pid if($pid = wp_insert_post($new_post)) $success = true; }
Is there any simple way how can I do that?
Forum: Plugins
In reply to: [Booster for WooCommerce] Discount by payment gate bugsYes, pleasw. Exactly
Forum: Plugins
In reply to: [Contact Form 7] Google recaptcha doesn’t workHi, I can’t!
I can’t see contact form 7 in list to upgrade: https://prnt.sc/uey555
As you can see, there’s no CF7 to upgradingIt seems, problem has been fixed. However, my custom images for voucher is gone… Is it only because of upgrading plugin?
Hello,
I have just upgraded to latest version, however I don’t see any chagnes in Gift voucher -> settings.
Could you please provide a quick quide, how can I set this thing?
Thank youForum: Plugins
In reply to: [Booster for WooCommerce] Discount by payment gate bugsHello,
We are using default function of your plugin, please, look at this screnshots:
https://prnt.sc/udqiq4
https://prnt.sc/udqj0b
https://prnt.sc/udqj4xSo if you are using Courier or “Zasielkovna” (this is our local delivery sytem – your goods are left in some shop, restaurant, etc), you should be able to pay viac direct bank pay and via Besteron paygate.
When you require to CoD (Dobierka in our language), you can choose only CoD as paygate, however, there is only this one option. I think, here’s a bug, because you can’t choose the others paygate, while delivery CoD is selected.If necessery, I can provide admin entrance to website, so you can directly check, how it works.
Forum: Plugins
In reply to: [Booster for WooCommerce] Discount by payment gate bugsHello, were you be able to reproduce the bug? My client wants to fix this issue, because he is losing money with each order.
Thank youForum: Plugins
In reply to: [Booster for WooCommerce] Discount by payment gate bugsThank you, here’re the screenshots
https://prnt.sc/ubgg16
https://prnt.sc/ubgg9k
https://prnt.sc/ubggfk
https://prnt.sc/ubggml
https://prnt.sc/ubggsq
https://prnt.sc/ubggyi
https://prnt.sc/ubgh5i