Nabil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: subdomain site not openingHi
Doublecheck your database connection on the wp-config.php file.
You are victim of the C in CSS. The best thing to do in my opinion is to look at the design and try to replicate it with your own CSS. It will take less time and less code.
Forum: Developing with WordPress
In reply to: Custom forms in WordPressSo you want two things:
– Show a form
– Save form submission in SQL tablesI don’t see any need for AJAX here unless required by your client.
What you need is the code that does the 2 things (show and save), this requires knowledge of WordPress plugin development.
Forum: Fixing WordPress
In reply to: Different WP_HOME and WP_SITEURL causes CORS errorYour solution is fine.
See this comment as well.
Forum: Plugins
In reply to: [Social Sharing Plugin - Sassy Social Share] Security alertHello
Have you edited those files?
Wordfence is verifies your files to see if all files on your website (I’m talking about WP Core, plugins and themes) are untouched, if it says some files don’t match the repository, then than means that you or someone else modified them (it could be your developer, your designer, a hacker and whatnot).
Forum: Plugins
In reply to: [WP-Chatbot for Messenger] Icon on right box on leftYou could try this CSS code:
.fb_iframe_widget iframe[style] { width: auto !important; }
Forum: Plugins
In reply to: [Contact Form 7] CSS not supported with my themeHi Nate. You should contact the theme author. The theme is paid, so we don’t have the ability to see what changed in the theme.
Forum: Plugins
In reply to: [WP Job Manager] Change user role upon job submissionIt does’t seem it’s possible without writing PHP code.
Forum: Fixing WordPress
In reply to: Different WP_HOME and WP_SITEURL causes CORS errorFor example, with Apache (and .htaccess), you can do:
Header set Access-Control-Allow-Origin "cms.domain.ch"
Forum: Fixing WordPress
In reply to: Different WP_HOME and WP_SITEURL causes CORS errorCheck this wesite https://enable-cors.org/server.html
Although I wouldn’t recommend enabling all domains altogether, I suggest you allow just the domain you want.
Forum: Fixing WordPress
In reply to: Membership plugin to only show content published since registeringI guess you could write a small plugin using the hook pre_get_posts.
Forum: Reviews
In reply to: [Simple Country Redirect] Fatal error: Uncaught Error:Hi cybercoderbd, plugin requires PHP 5.6 or newer.
PS. PHP versions older than 5.6 are no longet supported.
Forum: Plugins
In reply to: [Simple Country Redirect] Country Redirect VS CloudFlare VS CachingHi,
You can customize the plugin to use the country code provided by Cloudflare, see this line of code https://github.com/kadimi/simple-country-redirect/blob/41baebcf71343dc6bcbc2d8438d3eb347593b65f/inc/functions.php#L42.
Thanks,
NabilForum: Reviews
In reply to: [Simple Country Redirect] Fatal error on activationAs you wish.
Forum: Reviews
In reply to: [Simple Country Redirect] Fatal error on activationYou could help saving my answer and my plugin from the 0 abyss by providing the actual error message you are getting.
By doing so you will also be helping other people using this plugin.