user10522three
Forum Replies Created
-
Thanks, I will try that.
Ohk but that process seems unnecessarily lengthy. Too many clicks to first restore backup to local storage and then to restore it.
In menu your plugin text is Site Backup, which is a bit confusing for someone who is trying different plugins. you should keep it as xCloner so it will keep your branding and won’t confuse users.
I tried using it, but one minor problem is that your plugin doesn’t take database table prefix into consideration. Not a huge issue but other plugins have the option to change prefix or they just restore to currently active prefix.
The option to exclude files, I believe you must be familiar with Akeeba backup. It has feature to create profiles, if you add support for that your plugin will have one click backup feature.
Another thing I would suggest is to extract your backups in temp folder, outside of the home directory. Right now your sql gets extracted inside home directory with randomly generated folder name.
Those are just my suggestions. Your plugin is really cool to use. Thanks.
- This reply was modified 6 years, 3 months ago by user10522three.
Forum: Plugins
In reply to: [Contact Form 7] Can I submit a custom value to certain field?Checked the docs, I can get shortcode attribute. Thanks
Forum: Plugins
In reply to: [Contact Form 7] Can I submit a custom value to certain field?Unfortunately that doesn’t fit as solution for me. Can I pass a value in shortcode by constructing it in PHP and then retrieve the value to use it inside mail?
Or Can I just create entire form in PHP?
- This reply was modified 6 years, 3 months ago by user10522three.
Forum: Plugins
In reply to: [Contact Form 7] Can I submit a custom value to certain field?Thank you so much for response and the plugin
Just found out that every pages gets addtoany checkbox which stays checked by default. Why there is no option to disable it? Seems like unnecessary behavior.
Forum: Plugins
In reply to: [Advanced Editor Tools] Dropdowns do not work in fullscreen modeNope, I am thinking of hot fix it by using javascript until they provide update.
Forum: Developing with WordPress
In reply to: How to get slug of current category in taxonomy template?Solved.
$term = get_queried_object(); $term->slug;
Forum: Developing with WordPress
In reply to: Rewriting wordpress archive url of custom post typeI will go through it. Thanks. I don’t know how you manage to be so active on this forum, I tried but couldn’t continue but I plan to be active again soon.
Forum: Developing with WordPress
In reply to: Rewriting wordpress archive url of custom post typeHi again,
Can you please clarify a confusion? I would like to rephrase my question. Right now all my links to custom post type monthly archives are
example.com/2017/8?post_type=type-slug
. What I wish to do is get the monthly links asexample.com/type-slug/2017/8
. So instead of post_type being part of url query it should be part of url, is that possible? At the moment I am using toolset types plugin to create CPTs.I tried to get support from them but they said it is impossible to change it and that’s how wordpress writes urls. Can you please clarify?
Thanks.
Ohk that makes it clear. Thanks so much.
Thanks for explanation. So the thread I am referring to is incorrect? Sorry for so many questions.
Thanks for writing back. Can you please take a look at this thread? And please let me know if I can write any hooks to achieve the behavior I would like?
Also just to clarify in case there is misunderstanding, I just want to use type as slug instead of url query.
Forum: Developing with WordPress
In reply to: Rewriting wordpress archive url of custom post typeThanks for your response. I will test it and mark the question as resolved.
One weird thing about this question, there is one tag added to the question which I didn’t add as it makes no sense to me. Did you add ‘FreelancerBCM’ tag to the question? Weird.
- This reply was modified 7 years, 2 months ago by user10522three.
Yes thanks for explanation. I am not experiencing any flickering so I guess it’s good.
Maybe you can resolve flickering issue by debouncing the event, it basically stops resize event from triggering too frequently and adds some delay between two triggers. Just offering a suggestion in case it helps you.
Thanks.