Shivani-Rana
Forum Replies Created
-
Forum: Plugins
In reply to: WooCommerce screen option not workingResolved by deactivating WooCommerce Smart Coupons
Forum: Plugins
In reply to: WooCommerce – Edit Productshi,
thanks for this great help. its work
Forum: Plugins
In reply to: [Captcha] captcha for pagerestrict pluginHi,
Thanks BestWebSoft Support Team for your support.
But i have added custom captcha in pagerestrict plugin.Thanks Once again
Forum: Plugins
In reply to: [qTranslate] logo linkhi,
I resolved this issueYou have to just Add this line in header.php:-
$currentLang = qtrans_getLanguage();After this add some line like this:-
if( is_front_page() ){
echo ‘<h1><a href=”‘;
if($currentLang==’fr’)
echo home_url().’/fr/’;
else
echo home_url();echo ‘”><img src=”‘ . $logo_attachment . ‘” alt=”‘ . $alt_text . ‘”/></h1>’;
}else{
echo ‘<a href=”‘;
if($currentLang==’fr’)
echo home_url().’/fr/’;
else
echo home_url();echo ‘”><img src=”‘ . $logo_attachment . ‘” alt=”‘ . $alt_text . ‘”/>’;
}
?>
Forum: Plugins
In reply to: [qTranslate] widget text<!–:en–>english text<!–:–><!–:es–>spanish text<!–:–>
Forum: Plugins
In reply to: Qtranslator logo link issueresolved see my above post
Forum: Plugins
In reply to: Qtranslator logo link issuehi,
I resolved this issueYou have to just Add this line in header.php:-
$currentLang = qtrans_getLanguage();After this add some line like this:-
if( is_front_page() ){
echo ‘<h1><a href=”‘;
if($currentLang==’fr’)
echo home_url().’/fr/’;
else
echo home_url();echo ‘”><img src=”‘ . $logo_attachment . ‘” alt=”‘ . $alt_text . ‘”/></h1>’;
}else{
echo ‘<a href=”‘;
if($currentLang==’fr’)
echo home_url().’/fr/’;
else
echo home_url();echo ‘”><img src=”‘ . $logo_attachment . ‘” alt=”‘ . $alt_text . ‘”/>’;
}
?>
Forum: Fixing WordPress
In reply to: WarningThanks Matt. it resolved my problem . Now site working well
Forum: Plugins
In reply to: [Contact Form 7] Contact Form7 not sending emailsHi,
Thanks for help
But i installed postman SMTP plugin & it resolvrd my issue.
repalce this line “if ($this->debug) $this->log = $woocommerce->logger();”
to
“if ($this->debug) $this->log = new WC_Logger();”
Forum: Fixing WordPress
In reply to: WordPress Visual Default Editor not working/**tiny mic **/
define(‘SCRIPT_DEBUG’, true);
Copy this code before require once in wp-config.php file.
Thanks
Hi,
ihave found solution
repalce this line “if ($this->debug) $this->log = $woocommerce->logger();”to
“if ($this->debug) $this->log = new WC_Logger();”
Forum: Plugins
In reply to: [Kings Caption Hover] Remove Take A Look ButtonJust go to hook.php & remove “Take a look” text
Forum: Fixing WordPress
In reply to: WordPress Visual Default Editor not workingI have mention the solution..did you try..??
Forum: Fixing WordPress
In reply to: WordPress Visual Default Editor not working/**tiny mic **/
define(‘SCRIPT_DEBUG’, true);
Copy this code before require once in wp-config.php file.
Thanks