João Sardinha
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Want Primary Navigation to Change on Members Only PagesWhat was the problem?
I’m glad it got resolved 😉
Forum: Fixing WordPress
In reply to: Want Primary Navigation to Change on Members Only Pageshonesty i don’t know why it´s not working, are you sure you have sub-menus in the members menu? only those menus will appear when logged in, and when not logged in the primary menu will show
Forum: Fixing WordPress
In reply to: Want Primary Navigation to Change on Members Only Pagesyou need to provide me a link to the pastebin
Forum: Fixing WordPress
In reply to: Want Primary Navigation to Change on Members Only Pagescan you paste your menus code here http://pastebin.com/ ?
Forum: Fixing WordPress
In reply to: Want Primary Navigation to Change on Members Only PagesCan you provide a link to the website please?
Forum: Fixing WordPress
In reply to: Want Primary Navigation to Change on Members Only PagesWell, if you follow the instructions i posted, you get 2 menus, one that is public, and one for members, then you just need to assign the intended pages to each menus
Forum: Fixing WordPress
In reply to: Want Primary Navigation to Change on Members Only PagesMake sure that you have the sub-menus set up correctly in the WP backend
Forum: Fixing WordPress
In reply to: Need real help about two thingsa) navigate to http://your-website/wp-admin/options-general.php and disable registrations (anyone can register)
Forum: Fixing WordPress
In reply to: WP site down, please help!!!You’ll need to access to your site’s ftp, enter the wordpress folder > wp-content > themes > your-theme > functions.php and remove the code you added. When changing stuff in your php files, i recomend you to do it through ftp, and always keep a fully working backup of the file you are editing
Forum: Fixing WordPress
In reply to: Change middle colum size in headway with CSSyou just need to edit the current values, but you would write like this
div#wrapper div#column-1-page-index { width: 300px; }
div#wrapper div#column-2-page-index { width: 620px; }Forum: Plugins
In reply to: [WP Popular Posts] Title UNDER the thumbnail? URGENT!<div class="popular-posts-page">[wpp limit=20 range="daily" thumbnail_width=100 stats_comments=0 stats_views=1 order_by="views" pages=1]</div>replace by that please
and then add to the css
.popular-posts-page li { margin-bottom: 10px ; }and play with that value until you like how it feels on the page
Forum: Plugins
In reply to: [WP Popular Posts] Title UNDER the thumbnail? URGENT!wrap the shortcode in a div like this
<div class="popular-posts-page">[shortcode]</div>then i can help youForum: Plugins
In reply to: [WP Popular Posts] Title UNDER the thumbnail? URGENT!is that content added by you manually?
Forum: Fixing WordPress
In reply to: remove header from other pagesit depends, check the sorce code of the page you are trying to target, and see if there is any class you can use, in the body
Forum: Fixing WordPress
In reply to: remove header from other pagesyou must use the commas, like <?php if ( is_home() || is_page( ‘contact’ ) ) { ?>