armaank726
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Error change URLI noticed that you are getting the 500 error for subdomain….
I also faced the same problem with https://bestelectricsmoker.co
I have removed that error using the following solution which you can try..
First you need to go to ‘Default htaccess’and use that default htaccess code for .htaccess file for your subdomain root.
Now verify the following things
1 – In apache config , see this option : AllowOverride All [It should be ALL not none]
2 – do you have mod_rewrite enabled
3 – .Htaccess file permission should be 644.Hopefully, your problem will be resolved…
- This reply was modified 5 years, 3 months ago by armaank726.
For that matter.. may be WP Forms Plugin will help you…
Forum: Fixing WordPress
In reply to: Custom FieldsTo the extent i understand your problem, here is what you can do by jQuery
I needed something similar in a case when i had some fixed Options and i wanted one other option to be editable! In this case i made a hidden input that would overlap the select option and would be editable and used jQuery to make it all work seamlessly.
I am sharing the code:
var initialText = $(‘.editable’).val();
$(‘.editOption’).val(initialText);$(‘#test’).change(function(){
var selected = $(‘option:selected’, this).attr(‘class’);
var optionText = $(‘.editable’).text();if(selected == “editable”){
$(‘.editOption’).show();$(‘.editOption’).keyup(function(){
var editText = $(‘.editOption’).val();
$(‘.editable’).val(editText);
$(‘.editable’).html(editText);
});}else{
$(‘.editOption’).hide();
}
});Forum: Fixing WordPress
In reply to: WP Mail Client with template builder?You can use “Email Templates” plugin..
Hopefully it will cater your needs…Forum: Fixing WordPress
In reply to: Permalink 301 RedirectionI did that on my website https://www.boonieslife.com , using Rankmath redirection option. It provides a url redirection option of “regex” .
It may help in solving your issue.
You can also have the detailed knowledge here:
https://rankmath.com/kb/setting-up-redirectionsForum: Fixing WordPress
In reply to: Catchable fatal errorAre you sure this site is made on wordpress.
This site has been made in asp.net.
so the url you mentioned with “wp-admin” cannot work here..
Its backend will be accessible by some other url not by the one you mentionedForum: Fixing WordPress
In reply to: Permalinks keep getting broken – 404 errorsHave u tried checking and fixing of your .htaccess file?
If you go to the .htaccess file, you’ll see the option of “file permission”. Set it to 644.
After that, set your permalinks settings again and update it.Hopefully your issue will be resolved..