Václav Greif
Forum Replies Created
-
Forum: Plugins
In reply to: [Multisite Robots.txt Manager] PlaceholdersHi Chris,
thanks, I just sent you the message! I guess this won’t be too complicated to implement – I quickly checked the code and didn’t find the place where the robots.txt is actually parsed, but it should be just about replacing the placeholder..Anyway, thanks for adding this!
Vasik
Forum: Plugins
In reply to: [One Click Demo Import] Customizer import doesn’t show up on frontendI found the issue by checking the code of the Customizer import export plugin.
Readding the
do_action( 'customize_save_after', $wp_customize );
into class-ocdi-customizer-importer.php fixed the issue.
Forum: Plugins
In reply to: [One Click Demo Import] Customizer import doesn’t show up on frontendI tested the plugin, and yes, that works great, I can see the changes. When using OCDI, the changes are not applied..:(
Forum: Plugins
In reply to: [One Click Demo Import] Customizer import doesn’t show up on frontendHello, some settings are applied to the frontend, some are not (like background colors).
Forum: Plugins
In reply to: [One Click Demo Import] Return 0 on XML importHello, I’m trying to upload and import a XML file. The file is here: https://bsf.io/dj3a6
It just says “Importing, please wait” and than outputs 0. Nothing is imported
- This reply was modified 8 years, 2 months ago by Václav Greif.
Forum: Plugins
In reply to: [One Click Demo Import] Run the import from my pluginHi, thanks for reply.
I tried to do something as simple as:
$one_click_demo_import = PT_One_Click_Demo_Import::getInstance(); $one_click_demo_import->import_content( 'path/to/imported/file.xml' );
But the problem is the import methods are
private
. Would you mind changing these topublic
methods?Forum: Plugins
In reply to: [User Role Editor] Visual Composer stops workingThanks! Looking forward for a fix!
Forum: Plugins
In reply to: [WooCommerce] Set different prices for different customer groupsHi, thanks, since that I wrote my own plugin for this – it allows to add discounts or set specific prices for user groups at shop, category and product level…:) But the Customer Specific Pricing also looks very cool!
Forum: Plugins
In reply to: [BuddyPress Like] Is it possible to get this to work on pages?Forum: Plugins
In reply to: [Cool Video Gallery] CVG 1.9 – Gallery Not FoundAnother thank you @johnmarshan!
Forum: Plugins
In reply to: [BuddyPress Like] Is it possible to get this to work on pages?Hi Darren, I can see you already started to work on this in the
bplike_blog_button()
function.Go go go!!!..:) This is so much needed, there’s no other like plugin for BP that works. I can help you with the development, if you wish…
Forum: Plugins
In reply to: [CMB2] Edit title and post content on frontendThanks for reply. What hook the hook that is run on cmb2 form submission?
Thanks
Forum: Plugins
In reply to: [WooCommerce] Disable payment method for custom shipping methodFor anyone actually needing this, here’s the code that works for me…
function payment_gateway_disable_country( $available_gateways ) { $chosen_methods = WC()->session->get( 'chosen_shipping_methods' ); $chosen_shipping = $chosen_methods[0]; if ( isset( $available_gateways['bacs'] ) && $chosen_shipping=='ppl_dobirka') { unset( $available_gateways['bacs'] ); } return $available_gateways; } add_filter( 'woocommerce_available_payment_gateways', 'payment_gateway_disable_country' );
Forum: Plugins
In reply to: [WooCommerce] Set different prices for different customer groupsCool, as soon as this is implemented, I’ll buy the plugin right away!
Thanks!
Forum: Plugins
In reply to: [WooCommerce] Set different prices for different customer groupsThanks for great support.
I seem to have managed to add a specific price field for each role directly to the variations tab in product adminstration.
Here’s the code, seems to be working after short testing:
It was quite easy, would be cool if you added something like that to you plugin – I would buy it for sure, as it offers really great possibilities for the price!