nikoza
Forum Replies Created
-
Forum: Plugins
In reply to: [Admin in English] not working on 4.0 or 4.1I can report the same thing. The plugin does not work anymore.
If you don’t mind we would definitely appreciate if you could fix it.
Forum: Plugins
In reply to: [Simple Custom Post Order] Plugin broken in WP v.3.8Hey there,
In the line: 299 of the plugin the author checks whether the post (post type) is selected from the admin in order to change the status to active = true.
Can somebody tell me why is this required? Initially I did not select the post (post type) and the changes i did in another post type did work on the front end.
If you face the same problem remember to select post (from the options menu of the plugin) and you will be fine.
Thanks,
NickForum: Plugins
In reply to: [EU Cookie Law Compliance] Problem after activating the pluginHey Esmi,
I faced the same problem a few days back.
Do you want more info to help you debug the problem?Forum: Plugins
In reply to: Adding my custom sitemape to sitemap XML in WordPress SEO by YoastHello Starfishtrainers,
This is the solution to your problem:
add_action('init', 'enable_custom_sitemap'); function enable_custom_sitemap(){ global $wpseo_sitemaps; $wpseo_sitemaps->register_sitemap('the-type', 'the-type-callback'); }Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] "False http status (404)"I had the cron disabled and I had as the date 1/1/1970. I went there, fixed the date to the today’s date and that fixed the problem.
The author needs to add some more descriptive error messages.
Overall, great plugin
Another Fix!
My host transfer my websites when they have to or when they want to analyse them for some reason!! I don’t normally have a problem with that until now. I believe it will be a great addition to have a relative path instead of an absolute one.
The latest answer inspired me to go ahead and check the path of the logs. I noticed that there was a home3 path in the Settings / Logs (tab). I went ahead and remove that. Saved it and the system generated the correct path.
Afterwards I trying to do a manual backup and it worked.
Hope that helps!
Cheers
Forum: Plugins
In reply to: [Theme My Login] Problem with the current page setup for login/registrationGood point Mat. In theme options it would be good to have dropdown list of pages in order for the user to map the functionality to the page.
I have seen such implementation done in woocommerce for the cart pages and it is very straight forward.
Maybe the plugin dev will take this into account.
Hello Pippin,
Thank you for your help.
I was away for a few days with now stable internet connections.I am about to finish the first version of the plugin that deletes purchases but I am confused of factors that I may have missed. Would you be interested in taking a look?
Thank you again,
NickHello Pippin,
I really don’t believe that it is that far. I think many more than just be might be interested in keeping the db lighter. I assume that this will also increase the loading of the site.
Let’s hope that I will be able to build it amd maybe as a plugin to release later. I think it will make a good one.
Can you please tell me where in the db should I look?
Regards,
NickHello Pippin,
I would love to have a button in the options somwhere to delete everything from the DB and once every few days (manual click will be fine) but if it is not available any other custom solution I could use right now it will be just fine.
Thank you
Awesome work!!! I love your plugin!! Keep it up!
It does not actually happends on this location only.
It also adds
tags in the area of checkout:
<p>
<input type=”hidden” name=”edd-user-id” value=”3″><input type=”hidden” name=”edd_action” value=”purchase”>
<input type=”hidden” name=”edd-gateway” value=”paypal”>
</p>And possible in many other areas that I have not yet noticed.
Hello Pippin,
Thank you for trying to help.
Unfortunately I don’t have a caching plugin installed as I am still in development mode.
I am looking all over the place and I cannot seem to find the solution.
I am seriously stack on this.Forum: Plugins
In reply to: [WooCommerce] Free shipping after a certain amountHello everybody,
Doing some research again I found this brilliant way to accomplish what I wanted.
I decided to add it here as well for people looking to do the same thing.
http://ww.wp.xz.cn/support/topic/flatrate-shipping-and-free-shipping-both-viewed// Hide standard shipping option when free shipping is available
add_filter( ‘woocommerce_available_shipping_methods’, ‘hide_standard_shipping_when_free_is_available’ , 10, 1 );/**
* Hide Standard Shipping option when free shipping is available
*
* @param array $available_methods
*/
function hide_standard_shipping_when_free_is_available( $available_methods ) {if( isset( $available_methods[‘free_shipping’] ) AND isset( $available_methods[‘flat_rate’] ) ) {
// remove standard shipping option
unset( $available_methods[‘flat_rate’] );
}return $available_methods;
}Forum: Plugins
In reply to: [WooCommerce] Free shipping after a certain amountHello IgniteWoo!!! You helped me a lot and I was amazed that it was already in place!
How I would like to ideally set up my woocommerce woulf be to have flat rate for everything below the 100dollars and once this amount is hit to enable to free shipping and hide the flat rate in order to avoid comfusing the clients.
The way it works now is to have a flat rate and once somebody hits 100dollars then both the flat rate and the free shipping is there.
Is there a way to hide flat rate when free shipping is in place?
Thank you in advance for your help so far!!