Gabriel
Forum Replies Created
-
Forum: Reviews
In reply to: [Woo Autocomplete Search Bar] no resultHi,
Could you please open a support thread with the exact error and steps you’re taking. I will look into the issue and will update as needed.
Thanks!
Forum: Plugins
In reply to: [Woo Autocomplete Search Bar] Taxonomy for PW BandsHi, I apologize for the late reply. I’m currently on vacation with limited internet access, but will address the issue once I get back. Please give me a week to look into your issue.
Hi,
I fixed the issue which was due to some jQuery conflicts.
Please download the new version which should solve that issue.Thank you for notifying me.
Gabriel
Forum: Plugins
In reply to: [Woo File Dropzone] Shortcode Not WorkingDo I have to use the shortcode inside the “simple.php” file?
I would like to have more control of where it goes, but still inside the form.
I have a function I created that would display the upload field if a certain condition is true.Thank you
Forum: Plugins
In reply to: [Woo Autocomplete Search Bar] Tag’s ProblemI can’t edit your post. You’ll have to edit it out yourself.
I’ll be closing this as you’ve figured it out.Forum: Plugins
In reply to: [Woo Autocomplete Search Bar] Unable to RemoveI checked your website, but my plugin is neither installed, or controlling that area.
The search bar might be part of your theme, or woocommerce.
You can try adding this code to your CSS and check if it looks better:
.widget.woocommerce input[type="submit"] { position: absolute; right: 0.5px; top: 0.5px; }
Forum: Plugins
In reply to: [Woo Autocomplete Search Bar] Unable to RemoveNo, once you remove the plugin it should automatically remove itself. You might have a different search bar installed. This can also be caused by a cached feature. If you could paste your websites url I can take a look.
I’m also not sure what you mean by “layer over itself”. This might be caused by the CSS classes from your theme, but once again send my your websites url and I’ll take a look.
Forum: Plugins
In reply to: [Woo Autocomplete Search Bar] Storefront theme, product search bar in headerHi,
Add this to your functions.php file:
remove_action( 'storefront_header', 'storefront_product_search', 40 ); function woo_wasb_search() { echo do_shortcode('[autocomplete_search_bar]'); } add_action( 'storefront_header', 'woo_wasb_search', 40 );
And this to your CSS file:
.site-header{z-index:99;} #searchsubmit{display:none;}
You might require some more styling, but this should be a good start
Forum: Plugins
In reply to: [Crowdfunding for WooCommerce] Progress bar on home pageI would hate to give a one star review based on the support. I simply asked a simple questions which can be answered with a no, but I noticed that you guys are very selective on who you respond to.
I would be leaving a 1 star review in regards to support soon if this continues.
Forum: Plugins
In reply to: [Front End PM] High CPU UsageOK, so I checked everything you asked and the problem is being caused by the “Hide site wide notification in header” option.
Also here are the answers to your questions.
1. 5.4
2. 5.5.35-cll-lve
3. No
4. No
5. No, but after checking it my cpu usage dropped to normal again. I believe the bug is in this option while being unchecked.If there’s anything I can do to help please let me know.
Thanks for looking into this!
Forum: Plugins
In reply to: [Front End PM] Messages Number CountThank You!
This worked perfect for me:
fep_get_new_message_number()Forum: Plugins
In reply to: [Front End PM] FEP Message FormAwsome! Here’s the link.
https://github.com/galfaro/front-end-message
If you guys have any questions just let me know.
Forum: Plugins
In reply to: [Front End PM] FEP Message FormSo after spending time and reviewing this plugin I just decided to create my own and extend from this one.
Pretty much I created a plugin with a shortcode which I place in a members page. The shortcode contains a button that when clicked a shadowbox appears with the form. Also all the validation and submission is handled through an ajax call.
This way members could send a message to other members directly from there profile pages instead of having to go to there messages page.
I was just wondering if anyone else was looking for this solution and would like the plugin.
Forum: Plugins
In reply to: [Plugin : WP Admin Protection] How to be redirect to home page if wrong key?I’m not sure if you’re still looking for a solution, but I usually use the “simple 301 redirect” plugin for that.
I just install the plugin and redirect “/wp-login, /wp-login.php, /wp-admin, and /wp-admin.php” to an error page. In your case I would just simply point them to your domail url “https://www.mysite.com/”
Forum: Plugins
In reply to: [Front End PM] PM with authorHi, I was wondering if I could use this code, but with the Front End PM system instead.
It works perfect with the contact form, but I would like to use it with the messages instead.
Thank you!