bertarecchia
Forum Replies Created
-
Forum: Plugins
In reply to: [WPS Hide Login] Still have login attemptssy2j,
did you mean to type mysite.com/BLOG/wp-register.php ?
you said mysite.com/wp-register.php and that didn’t work for me.Also, how do you “fire exit” in htaccess?
thanks.
Remy Perona, any update to the plugin to fix this issue?
Thanks.
Forum: Fixing WordPress
In reply to: Changes to “Current Theme Options” for WPfolio not savingHi. Under the advanced tab I just changed the expire time to 300 but it didn’t matter because every time I make a change I go to the Easy tab and delete the cache. The changes show up right away.
Expiry Time & Garbage Collection
Expire time: 300 secondsForum: Fixing WordPress
In reply to: Changes to “Current Theme Options” for WPfolio not savingYup. It was supercache. Not a conflict I guess but the regeneration time was set to 3000 or somenting. So I now delete the cache after each update ?? Thanks for pointing me to the right direction!
Forum: Fixing WordPress
In reply to: Changes to “Current Theme Options” for WPfolio not savingIt’s confusing. Some changes show up after 30 min and some never show up. I’ve been changing permissions to some files in wp-content and it has helped on some things.
It’s happening not only on chrome but mozilla and explorer.The delay has to probably do with the cache( not the browser cache). Someone told me to delete it every time I make a change but I can’t find where I can do that.
Forum: Fixing WordPress
In reply to: Changes to “Current Theme Options” for WPfolio not savingwhat was the solution for this? I’m in the same boat.
Thanks.Forum: Installing WordPress
In reply to: Adding menu buttons in Lightwordskyblogz, don’t you have the same problem with the button being darker?
Forum: Installing WordPress
In reply to: Adding menu buttons in LightwordHi, this is what i was looking for and it works. Thanks.
The only problem is the the new button has that darker color of the current page, even if it’s not the current page. Any idea how to fix it?you can view it here:
https://www.anticoelements.comForum: Fixing WordPress
In reply to: Not so simple to change the Home Button Link.Ugh…amazing. I spent hours finding the answer and as soon as I posted this a strike of genus hit me ??
In functions.php Under HOME BUTTON:
function lw_homebtn($homebtn_value){ global $lw_remove_homebtn; if($lw_remove_homebtn == "false") { if(is_front_page()) $selected="s"; ?><li><a class="<?php echo $selected; ?>" title="<?php echo $homebtn_value; ?>" href="https://www.YOURADDRESS.com"><span><?php echo $homebtn_value ?></span></a></li> <?php } }
Under Header.php I also changed the text in the button from Home to Visit our Store:
<ul id="front_menu"<?php echo lw_expmenu(); ?>> <?php echo lw_homebtn(__('Visit Our Store','lightword')); ?> <?php echo lw_wp_list_pages(); ?>
Forum: Fixing WordPress
In reply to: Locked myself out after amending file path settings – HELP!!!Awesome rescue!
I used the “Changing the URL directly in the database” which for a newbie like me was easy.Thanks!
Forum: Fixing WordPress
In reply to: Can’t change default link of top headerGreat.
Although functions.php didn’t have
<?php echo get_option('home'); ?>
I changed line<a name="top" title="<?php bloginfo('name'); ?>" href="<?php bloginfo('url'); ?>"><span id="top" style="background:url('<?php echo $top_header_image_path; ?>') no-repeat;height:<?php echo $lw_top_header_image_height; ?>px"><strong><?php bloginfo('name'); ?></strong></span></a>
and replaced
<?php bloginfo('url'); ?>
with:
https://www.anticoelements.com
You rule.
Forum: Fixing WordPress
In reply to: Can’t change default link of top header