Aniket Ashtikar
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Attach File: How to show added file Name in File FieldYes, it is indeed a problem with the way the CSS for form elements has been added. The current issue of input element showing incorrectly as you report should actually be specific to webkit browsers. Do you mind adding the following CSS and then review if the form and file input field works as desired:
.page-id-45 #x-section-5 .wpcf7-form input[type="file"] { margin: 0; padding: 10px 10px 10px 35px; height: 100%; line-height: inherit; left: 0; z-index: 0; opacity: 1; } .page-id-45 #x-section-5 .wpcf7-form input[type="file"]::-webkit-file-upload-button { opacity: 0; }
Please remove the CSS rule added previously. Let me know if this works for you.
Forum: Fixing WordPress
In reply to: HELP to remove social newtwork buttonsHi @lanaiss2018,
You will probably need to review your theme settings to be able to remove that. Based on the link you shared, I guess you are using The Canvas theme.
If that’s correct, you may probably want to check this out: https://demo1.artillegence.com/thecanvas/features/#rpsYHTIIBGC5XUV74VY7W7G0WPS8K3PN5SD
Other than that, it would probably need someone diving into your WordPress install / website to see what’s going on and fix it for you.
Let me know if that helps.
Forum: Plugins
In reply to: [Contact Form 7] Attach File: How to show added file Name in File FieldHey @matchurowley,
Thi seems to be more of a CSS styling issue.
Here is how you can fix it:
- Locate and edit your
main.css
file. - Look for this rule
.page-id-45 #x-section-5 .wpcf7-form input[type="file"]
- Re-edit the CSS rule to this:
.page-id-45 #x-section-5 .wpcf7-form input[type="file"] { margin: 0; padding: 0 0 0 35px; height: 100%; line-height: inherit; left: 0; z-index: 0; opacity: 1; }
- Save your CSS file.
This should fix the issue with file input not displaying the selected file name.
Let me know if this works for you or if you still face issues.
Forum: Developing with WordPress
In reply to: Developing the form filling type web pageHi @mycashinon,
That should be quite easy. You can create your own if you love to get into code stuff or there are some ready-to-install-and-use plugins available to help you out. Here are some resources that could be of help to you:
- https://www.sitepoint.com/building-custom-login-registration-pages-wordpress/
- https://www.wpbeginner.com/plugins/how-to-create-custom-login-page-for-wordpress/
Or maybe, find out plugins and more when you google out: https://www.google.com/search?q=register+login+page+wordpress&gl=US&pws=0
Hope that helps ??
Forum: Plugins
In reply to: [Genesis Footer Builder] Wrong Footer ShowingGreat to hear that the issue has been resolved. Cheers!
Forum: Plugins
In reply to: [Genesis Footer Builder] Sorry, you are not allowed to access this page.Hi AL Guevara,
This kind of error typically occurs when you have a limited access / user role restriction on the site.
Can you pls verify if you are able to navigate to Genesis Theme Settings page on your site. If you are not able to do so, you will have to directly contact your site administrator to help you with user role restriction for your role on the site.
If it still does not help, pls communicate the issue in detail via email at [redacted] and I’ll be happy to help you with it.
Thanks.
Forum: Plugins
In reply to: [Genesis Footer Builder] Sorry, you are not allowed to access this page.Jan,
Thanks for the heads up. Just to let you know that I am aware about this and that is why I had asked the user to just email me the same and not share anything here. If that’s wrong, what do you suggest is the best way to help users with an issue that specifically requires something like this to be demanded from them?
And BTW, this will also make me rewrite the entire thing again for the user. Be kind dude ??
Forum: Plugins
In reply to: [Redirectioner] Plugin auto redirect GET parameters as 404Hi Remkus,
Glad, you stepped in to maintain the plugin.
Even I’m facing the same issue with the plugin activated. When using shortlinks on pages, etc, the link just redirects to homepage. Previously on some other setup, I was able to fix this with another possibly-buggy option of “Forcing current permalinks” by just disabling it.
However, this time the case seems to be different. FYI, the links were working fine before I updated to the latest version of your plugin.
Any help is appreciated. Thanks.
Hi @lunacodes,
Cool idea! We’re always excited when we get ideas of making the plugin even better and useful. The feature you requested is already on the plugin dev roadmap.
Rest assured, we’re working to make it happen. Cheers!
Forum: Reviews
In reply to: [Genesis Footer Builder] Love it!Thank you so much @lunacodes. Kind words motivate.. always ??
Hi @kevinhaig,
Thanks for the info. I tried doing that already. But it does not help eitherways. Even after resetting and trying to add a new one again, it still tends to take the same ID for the new testimonial.
I have no idea what kind of an issue this is and why is it happening at all. However, here are the screenshots before and after trying to add a new testimonial:
P.S.: When trying to debug with Firebug, I noticed that the tb_id is not posted at all. It’s value is empty when the testimonial is posted.
Any help is appreciated. Thanks.
Thanks for the prompt reply @kevinhaig. But unfortunately, that does not help. When saving the new testimonial, the ID of the first testimonial (since I have not been able to save the second testimonial until now) that was saved, shows up in the ID field and when you press save again, it overwrites the first one.
Any help is appreciated.
Forum: Plugins
In reply to: [Genesis Footer Builder] Footer Menu orientationHi @donpro,
Sorry for a late reply. I tried opening that link, but I guess your site is not publicly accessible, probably maintenance mode or something. So I was not able to view the site and look into the style issue.
Looking forward to your reply. Thanks.
Forum: Plugins
In reply to: [Genesis Footer Builder] Footer Menu orientationHi @donpro,
Can you pls share the URL of your website, so that I can take a close look at what’s happening!
Thanks.
Forum: Plugins
In reply to: [Genesis Footer Builder] Footer Menu orientationHi @donpro,
You can customize the appearance of the menu using CSS. Just set the display property to block for each of menu items to display them each on single line.
Try adding the following code to your theme’s style.css file:
.gfb-menu-footer > li { display: block; }
Let me know if that helps.
- Locate and edit your