Claud Chan
Forum Replies Created
-
Forum: Plugins
In reply to: [Scripts n Styles] All data not save after click updateHi,
It works only in global setting. All field is saved.
But not working on individual pages.
Please advise.- This reply was modified 9 years ago by Claud Chan.
I can’t. Is localhost. I am using WAMP.
It’s the correct URL.
Still “404 Not found”.Did you mean Cookie Based Brute Force Prevention? No.
Enable Rename Login Page Feature. Yes.Forum: Plugins
In reply to: [Rename wp-login.php] Doesn't work with permalinks enabled.+1
Doesn’t work for me as well.This is great!
Thank you. It is working now.
But can explain why the code positioning just to move on top and it work, how come?Doesn’t work.
Here is the converted code:
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="WordPress Rule" stopProcessing="true"> <match url=".*" /> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="index.php?page_id={R:0}" /> </rule> <rule name="rule 1E" stopProcessing="true"> <match url="^overseer/?$" /> <action type="Rewrite" url="//wp-login.php" appendQueryString="true" /> </rule> </rules> </rewrite> </system.webServer> </configuration>Thanks but I already have that web.config code in. I am not a programmer and I need help on how to convert / to code that in web.config file.
By default generated code:
# BEGIN WPAdminURL <IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^secret-login/?$ /wp-login.php [QSA,L] </IfModule> # END WPAdminURLBut how to convert that in Web.config file?
Thanks, but could anyone can guide me on this please?
Anyone?Forum: Plugins
In reply to: [WooCommerce] BlockUI alert!I got the same issue here.
Forum: Fixing WordPress
In reply to: How to show two posts in each itemGreat!
Thank you so much!Forum: Fixing WordPress
In reply to: How to show two posts in each itemHere is my current code:
<h2>Recent News</h2> <ul class="post-carousel"> <?php $posts = get_posts("showposts=10"); if ($posts) { foreach ( $posts as $post) : setup_postdata($post); ?> <li> <div class="entry"> <div class="entry-date"> <div class="entry-day"><?php the_time('d'); ?></div> <div class="entry-month"><?php the_time('M'); ?></div> </div> <div class="entry-body"> <h4 class="entry-title"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h4> <div class="entry-content"> <div class="content"> <?php echo wp_trim_words(apply_filters('the_excerpt', $post->post_content), $num_words = 55); ?> </div> <p><a href="<?php the_permalink() ?>">Read More ›</a></p> </div> </div> </div> </li> <?php endforeach; } ?> </ul>I need to show 2 entries in each ‘li’
Many thanks.
Forum: Fixing WordPress
In reply to: How to show two posts in each itemAnyone?
Forum: Themes and Templates
In reply to: How to hide 'Home' menu in wp_nav_menu (twentytwelve)?Hi sonai,
I look into your css code sample it just going to hide all the menus instead.Forum: Themes and Templates
In reply to: How to hide 'Home' menu in wp_nav_menu (twentytwelve)?Hi sonai,
I am good in css. I not sure how you get you custom css name to specific.
Here is what default wordpress show me:<div class="menu"> <ul> <li class="current_page_item"><a href="http://fairedge.localhost/" title="Home">Home</a></li> <li class="page_item page-item-5"><a href="http://fairedge.localhost/our-company/">Our Company</a> <ul class="children"> <li class="page_item page-item-7"><a href="http://fairedge.localhost/our-company/about-us/">About Us</a></li> </ul> </li> </ul> </div>There is no unique class name for ‘home’ for me to do it!
Hi WPyogi.
I did not plan to use custom menu, thought to let wordpress to handle the menus for me. If there is no options I can set in twentytwelve, then I have no choice to force use custom menus. >_<I wonder what is the purpose of the functions “[‘show_home’] = true;” for, if it doesn’t working.