gxgl
Forum Replies Created
-
Hi guys!
I had same problem and I have found this
define( ‘DISALLOW_FILE_EDIT’, true );define( ‘BWPS_AWAY_MODE’, true );
define( ‘BWPS_FILECHECK’, true );
at the top of wp-config.phpAfter I set
define( ‘BWPS_AWAY_MODE’, false );
I was able to access the admin side.Also I have deactivated this function from plugin options.
Forum: Fixing WordPress
In reply to: How to get rid of unwanted pop upHello Guys!
I know this an six months old post but today I have discovered that this issue is valid only on Google Chrome. I have the latest version (I don’t know if this is happening on older versions).
On IE10 and Firefox, I have no problem with clicking on page or outside of it and getting those popups.
I will be back tomorrow with more info.
Thank you for this post.
Forum: Fixing WordPress
In reply to: annoying ad of www.watchliveonline.org on my siteremark: when I hit refresh is loading normal but if I click outside of page, in the blank area of my site, the popup appears again ??
Forum: Fixing WordPress
In reply to: annoying ad of www.watchliveonline.org on my site@ pyrohot – I didn’t find the code, but I have tested the site by disabling the javascript. Also this crap occurs only when I click on logo, if I hit the refresh button site is loading normal. I will take a look in that jquery file.
Forum: Fixing WordPress
In reply to: annoying ad of www.watchliveonline.org on my siteI was wrong… that add didn’t start for two, three times… ?? so sorry! I am still working on this.
Forum: Fixing WordPress
In reply to: annoying ad of www.watchliveonline.org on my sitehmmm… solved here :p
by deactivating WP-Insert
*if this apply for you too, then mark this post as fixed
Success
Forum: Fixing WordPress
In reply to: annoying ad of www.watchliveonline.org on my sitesame here
When you add a new file tag to your form, that could be something like “file-432”. Look for that in your form with your particular number and add it. Like Takayuki said. Ex: generated field is [file file-432], you have to add to mail body the [file-432] tag.
Succes
Hello everyone!
As a mix of this post and this post
You can do the next steps:
Note: Use Notepad++ and format/encoding pages as UTF-8 for WordPress
Then add next code as following:At top of polylang.php
———————-
/* Template Language Hack */
add_action(‘show_current_language’, array(&$this, ‘show_current_language’));
/* End of Template Language Hack */At the bottom of polylang.php
—————————–
/* Language Hack */
function show_current_language() {
global $curlang;
$curlang = $this->curlang->slug;
}
/* End of Language Hack */In header.php (until the <?php wp_head(); ?>).
———————————————-
<!– Language Hack –>
<?php
$curlang = “none”;
do_action(‘show_kcurrent_language’);
?><html <?php language_attributes(); ?>>
<!– End of Language Hack –>Where needed in pages (for maximum 3 languages):
————————————————
<!– Language Hack –>
<?php $currentlang = get_bloginfo(‘language’);
if($currentlang==”en-US”)
echo “<div>All rights reserved.</div>”;
elseif ($currentlang==”ru-RU”)
echo “<div>Все права защищены.</div>”;
else
echo “<div>Toate drepturile rezervate.</div>”;
?>
<!– End of Language Hack–>Maybe there can be another option for this to use more than 3 languages (maybe using array or something else), but… I have no clue at this moment ??
The steps above worked perfectly for me, using wordpress 3.3.2
Regards to all!