Ravikumar Patel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My posts hit the spam queueForum: Fixing WordPress
In reply to: Pages content Not display in editor after move live server.After Change working fine.
/** Database Charset to use in creating database tables. */ //define('DB_CHARSET', 'utf8mb4'); to define('DB_CHARSET', 'utf8');Whats difference between utf8mb4 vs utf8 on wp.
Forum: Fixing WordPress
In reply to: Warning: require_once(/home/mysite/public_html/wp/wp-load.php)wp Root directory on with readme.html there 10 to 12 lines on h1 tag in write current version u have check there.
Make valid permisson for wp.
Forum: Fixing WordPress
In reply to: When trying to log in or go to my blog I get a Fatal ErrorBlue Wrench Video Widget issue created with on your site please fix the code.
Go plugins/blue-wrench-videos-widget/lib/BlueWrenchVideoDatabase.php
//require_once(ABSPATH . 'wp-admin/includes/class-wp-list-table.php'); to require_once('includes/class-wp-list-table.php');Forum: Fixing WordPress
In reply to: Warning: require_once(/home/mysite/public_html/wp/wp-load.php)Hello sir u have not define which version u have use so this file
Replace whole code with or check with code.
wp-blog-header.php (4.2.4)<?php /** * Loads the WordPress environment and template. * * @package WordPress */ if ( !isset($wp_did_header) ) { $wp_did_header = true; require_once( dirname(__FILE__) . '/wp-load.php' ); wp(); require_once( ABSPATH . WPINC . '/template-loader.php' ); }Forum: Fixing WordPress
In reply to: Unable to update plugins since 4.2.3 UpdateGo on .htaccess file
Simply change the mod_rewrite.c to mod_rewrite.so and you’re all set to go!
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressForum: Fixing WordPress
In reply to: Code in hyperlinkYeah,
In market available to related this type plugins for content display for membership related.Every page on not login options required.
I u have create 4 types of membership so your page content on display like
[membership="gold"] // your content [/membership="gold"] [membership="silver"] // your content [/membership="silver"] // content for all person seeThis functionality avalilable on learndash find this type plugins.
Forum: Fixing WordPress
In reply to: yahoo business server wordpress issue.working set default permalink but
i have set with %postname% or /%category%/%postname%/ display 404 page.
Any suggestion why not working.
Forum: Fixing WordPress
In reply to: two different headersSee hear how to create multiple header and how to call easy way.
copy header.php make name u want like header-en.php and header-ar.php
so u can get this file using get_header( ‘en’ ); get_header( ‘ar’ );
so now:
your code :$h = get_post_meta($post->ID, 'header_language', true); if($h=='en'){ get_header( 'en' ); }elseif($h=='ar'){ get_header( 'ar' ); }else{ get_header(); }Forum: Fixing WordPress
In reply to: two different headersIf u want only for pages so u can use custom options for header value.
like create header_language = en or ar and make condition on header where u have called.
Forum: Hacks
In reply to: Get custom post type?This code @return string|false Post type on success, false on failure.
Forum: Fixing WordPress
In reply to: Having trouble to center my footer! Fortunato Theme!Add this css on your theme style.css
.site-footer { text-align: center; }Forum: Fixing WordPress
In reply to: My posts hit the spam queue@hello Jan Dembowski sir,
My just last question.
when i have stated this form my post questions and answer at a time published. Now which is not after moderators review then publish.
Whats the happen in my case? i am spammer on forum ?
for all user same process for Question and Answer review then published?
Forum: Fixing WordPress
In reply to: My posts hit the spam queueHello sir,
Whats means of deadline on my answer and questions how much time taken for publish after submit?On every question and answer taken to publish get 30min to 1 hours.
First when i have not know your rules before months so i have create mistack but now i know all rules so never create this type mistack.
please why not release my answer on time like others users?
Forum: Plugins
In reply to: [Search Exclude] This was compitible with multi network site?Ok but From your side why u have use there !is_admin() means whats the processs for this code for.
On my way if i have add your code with is_admin() so admin can not getting search restricted page.
But i have add current_user_can( ‘administrator’ ) then admin can easy search all pages frontside.