Ryan Yu
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Plugin shortcode not working on custom themeForum: Fixing WordPress
In reply to: i want to change URL – do I have single site installation??Hi sebastianwp13,
If you are not sure if your website is the multi-site, then most likely you are a single site 🙂
Just in case, if it is multi-site, you will see the menu like below:
http://codex.wordpress.org/images/7/78/network-admin-link.pngForum: Fixing WordPress
In reply to: Completely remove right sidebar in Custom Community themeHi morrisminor1983,
For your first question, open up the page.php and find the line below
<div id="content" class="span8">and replace it with
<div id="content" class="span12">For your second question, open up header.php and find #access in the <head> area and replace
border-bottom: 1px solid #00DDED;with
border-bottom: 5px solid #00DDED;Hope it helps.
Forum: Fixing WordPress
In reply to: Problem with aligning images and textPlease check this code; I quickly created this for you and you should be able to get some ideas.
http://pastebin.com/2YGaVNFYAnd the result will look something like below.
http://s15.postimg.org/psdb1kdwr/image.pngHope that’s what you want to achieve.
Forum: Fixing WordPress
In reply to: Problem with aligning images and textHi Arti_rus,
Without looking at the actual code, it is hard to imagine how you achieved that, but my suggestion would be to write something like:
<ul> <li> <ul> <li>image1</li> <li>text1</li> </ul> </li> <li> image1 </li> <li> <ul> <li>image2</li> <li>text3</li> </ul> </li> etc etc </ul>if you could post an example page, we could have better ideas and come up with better solutions 🙂
Forum: Fixing WordPress
In reply to: www.domain.tld problematicThat’s interesting. Can you possible post the link?
Forum: Fixing WordPress
In reply to: www.domain.tld problematicHi OC2PS,
I would firstly check if there is anything odd in .htaccess.
Also ask your domain registrar if both www and non-www are pointing to the same place.
Forum: Fixing WordPress
In reply to: Custom post typeCheck out those articles.
http://codex.wordpress.org/Post_Types
http://wp-types.com/learn/custom-post-types/
http://wp.smashingmagazine.com/2012/11/08/complete-guide-custom-post-types/If you are still not sure, let me know 🙂
Forum: Fixing WordPress
In reply to: Limiting Search Page Posts to 10 Per Page from InfiniteOops, you’ve already figured it out haha
Forum: Fixing WordPress
In reply to: Limiting Search Page Posts to 10 Per Page from InfiniteHi Schillingry,
Find the line
<?php if (have_posts()) : ?>and add the code below above the line
<?php query_posts($query_string . '&showposts=20'); ?>20 is the number of posts you want to display.
Let me know how it goes.
Forum: Fixing WordPress
In reply to: Limiting Search Page Posts to 10 Per Page from InfiniteCould you post the url for the search result page?
Also can you post the code from search.php using pastebin.com?Thanks!
Forum: Fixing WordPress
In reply to: Limiting Search Page Posts to 10 Per Page from InfiniteHi Schillingry,
Have you tried updating the setting on your backend?
Go to Settings > Reading and see what value you have for “Blog pages show at most”.
Forum: Fixing WordPress
In reply to: How to hide a post from the main page and category using a tagNo worries 🙂
Forum: Fixing WordPress
In reply to: How to hide a post from the main page and category using a tagHaha sorry, my bad lol
For the category page, try to replace the code
$args = array_merge( $wp_query->query, array( 'posts_per_page' => 9 ) );to
$args = array_merge( $wp_query->query, array( 'posts_per_page' => 9, 'tag__not_in' => 6 ) );Forum: Fixing WordPress
In reply to: How to hide a post from the main page and category using a tagIn the $args = array(, add
‘posts_per_page’ => 3,
3 is the tag id.
Let me know how it goes.