rhoi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to remove specific content in single pageThanks for that idea. But is it possible to put html and php code in custom field? like this
<section style="background: url(<?php bloginfo('template_url'); ?>/images/slide1.jpg) 50% 70% no-repeat ; width:550px; height:437px;" data-type="background" data-speed="-2" data-offsetY="-100"> <img src="<?php bloginfo('template_url'); ?>/images/slide1.jpg" width="550" height="590" style="display:none;"/> <div class="content"> <div class="title">Design Evolution</div> Design Evolution of National Geographic Magazine Covers </div> </section>
Forum: Fixing WordPress
In reply to: Leave Email Adress then Download button appearThanks Carlos! But “Email Before download” plugin will require the form to send it in your email using CF7.
I don’t need the CF7 or any form that will send in email. I only need is to save the email address in the database. (like subcribers2) And view the lists of email address in your wordpress admin. So that you can monitor all the email address they used.
Is it possible to combine the “WordPress Download Monitor” in subscribers2 plugin?
Forum: Fixing WordPress
In reply to: Menu (order) – tried everything suggested.i knew how you fixed it, you changed the order of the menu by descending.
Like i said earlier the problem is only in your css. If you remove the float:right in menu li css, and change it to float:left or display:inline your menu will change orderly like what you have in wordpress appearance->menu.
float:right brought your first nav to the right going to left
CONTACT DONATE ABOUT US HOMEwhile float:left or display:inline will show like this
HOME ABOUT US DONATE CONTACTForum: Fixing WordPress
In reply to: Menu (order) – tried everything suggested.I guess your account is not the administrator of the site. Request in the site owner to change your account into administrator. If not, give this job to him.
Forum: Fixing WordPress
In reply to: Menu (order) – tried everything suggested.In your style.css find the line where the #menu li placed and change the existing with this.
#menu li { display: inline; position:relative; }
btw style.css could be find in appearance->editor or in your ftp files
Forum: Fixing WordPress
In reply to: Menu (order) – tried everything suggested.if you still want to be align it in right just remove the float and change it to this.
#menu li { display: inline; position:relative; }
Forum: Fixing WordPress
In reply to: Menu (order) – tried everything suggested.sorry my first answer was wrong.
Your problem is the output by in-order right?. The button should be in this order HOME ABOUT US DONATE CONTACT .. ??if I’m correct the problem is in your css. change the float right into left in #menu li
#menu li {float:left}
Forum: Fixing WordPress
In reply to: Menu (order) – tried everything suggested.be sure you have this on the place where you want to appear the nav
<?php wp_nav_menu( array( ‘theme_location’ => ‘primary’ ) ); ?>and this in functions.php
function twentyeleven_page_menu_args( $args ) { $args['show_home'] = true; return $args; } add_filter( 'wp_page_menu_args', 'twentyeleven_page_menu_args' );
using “posts_per_page” will having a conflict in category page. you can only use it once in homepage, but when you use it again in category page it will bring you to 404 page. so avoid using this e.g posts_per_page=5
i solved my problem by this.
Forum: Fixing WordPress
In reply to: Images not showing (Blue Question Mark)you putted a wrong path don’t use localhost path
https://localhost/wordpress/wp-content/uploads/2012/05/Tennis-Balls.jpgthis is the correct path of your image
https://www.learntennisnow.com/wp-content/uploads/2012/05/Tennis-Balls.jpgForum: Fixing WordPress
In reply to: error messageyou putted a wrong path don’t use localhost path
https://localhost/wordpress/wp-content/uploads/2012/05/Tennis-Balls.jpgthis is the correct path of your image
https://www.learntennisnow.com/wp-content/uploads/2012/05/Tennis-Balls.jpgForum: Fixing WordPress
In reply to: How to display the thumbnail of a postin inserting a div around the code these are the ways.
1. separate the html code in php code by putting end tag in php code.
<?php code here ?> <div> </div> <?php code here ?>2. add a html code inside echo
echo ‘<div></div>’.$my_post->post_content;Forum: Fixing WordPress
In reply to: How to display the thumbnail of a postyour echo was wrong revome the “” it should be like this
echo $my_post->post_content;Forum: Fixing WordPress
In reply to: Add multiple images in a postlazy guy ^_^
you really should to click the “insert into post” button to insert the image. But if you don’t want to click and you love Typing just copy the URL from media library and type the <img src=”paste here” /> ..
or try to find plugins instead.
Forum: Fixing WordPress
In reply to: Homepage Loops but one PaginationI’ve found a solution now. 1 pagination is working in 2 filtered divs though the second page was still have 2 divs instead of 1 div only.
if (have_posts()) : global $query_string; query_posts( $query_string . '&cat=8&posts_per_page=2'); thesis_loop::home(); query_posts( $query_string . '&cat=7&posts_per_page=2'); thesis_loop::home(); endif; wp_pagenavi();