bryceadams
Forum Replies Created
-
Forum: Themes and Templates
In reply to: f**ckin' sidebar need helpThe sidebar is not being called on that page. You need to find the template file for it – it may be index.php or similar, and then add
<?php get_sidebar(); ?>
Forum: Themes and Templates
In reply to: Need a templaye with this!!!This looks like the theme used on that site:
https://pandathemes.com/wordpress-themes/the-block/
However, it is premium and costs money.Forum: Themes and Templates
In reply to: Styling search form. Twenty ten theme.Try add in your style.css file:
.widget_search { margin-top: 3px; }
And to style the input button, add styles to the following class as such:
.widget_search #searchsubmit { /* your styles here like: */ background: #fff; color: #222; }
Forum: Themes and Templates
In reply to: Most of plugins does not work on my Ajax based templateYou could just switch themes or find an alternative to Widgetkit.
If you have a solution that requires editing the core, you will most likely be able to just make a function or plugin that does the same thing.
I have/have had the latest version of simple facebook connect for a while now, so would that mean it’s something else I’ve added that’s causing it?
Forum: Themes and Templates
In reply to: How to move search box from top bar to content areaPost as a new topic.
Forum: Themes and Templates
In reply to: need a step by step how to do RTLIn the title area of the post where you’d normally put your English title.
Forum: Themes and Templates
In reply to: Remove register link from navigation when logged inYou may have to speak with the plug-in developer then.
Forum: Themes and Templates
In reply to: Remove register link from navigation when logged inYou’ll need to open up your
sidebar.php
file or wherever that link is, and find the code for it. You then need to replace it with something like this:<?php if ( is_user_logged_in() ) { echo 'Welcome, registered user!'; } else { echo '<ul class="tml-action-links">'; echo '<li><a href="https://briddlemedia.com/login/?action=register" rel="nofollow">Register</a></li>'; echo '<li><a href="https://briddlemedia.com/login/?action=lostpassword" rel="nofollow">Lost Password</a></li>'; echo '</ul>'; } ?>
Basically that piece of code is saying ‘Welcome, registered user!’ if the user is logged in, and if not, gives the Register & Forget Password links currently on your site.
Forum: Themes and Templates
In reply to: help — Add sidebar to the top and bottom of the pageAre you including the
<?php
and?>
tags in it? They will most likely already be at the top and bottom of that functions.php file so just post the code from the site without those tags.Forum: Themes and Templates
In reply to: Excerpt word limiterI don’t know what those instructions you have are. Just ignore them and do the following…
Look at the following picture: Picture
You need to replace:
<?php the_content(''.__('read more <span class="meta-nav">?</span>', 'codium_extend').''); ?> <? php excerpt('word-limit'); ?>
…with:
<?php the_excerpt(); ?>
Now this will make each post on the home page only show 55 words of the post. You can change this to a different amount by opening up your
functions.php
file and adding the following somewhere in the middle in between the<?php
and?>
tags:function custom_excerpt_length( $length ) { return 20; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
Edit the 999 part
If for some reason a ‘continue reading’ link isn’t showing, you can add the following after
<?php the_excerpt(); ?>
:
<a href="<?php the_permalink(); ?>">Continue Reading</a>
Read more about the_excerpt
Forum: Themes and Templates
In reply to: [Yoko] Adding left and right columns to Yoko 1.0.5I’d honestly recommend trying out a different theme that better suits your needs if you don’t have any coding experience. WIth this theme you actually do have a footer. I’m not sure about the theme’s options but you can always open up the footer.php file (either through an FTP client or in Appearance > Themes > Editor > footer.php (for that theme) and play around with it there.
Forum: Themes and Templates
In reply to: How to move search box from top bar to content areaCould you please post your site’s link and I’ll help you out.
Forum: Themes and Templates
In reply to: help — Add sidebar to the top and bottom of the pageHi junaldlive… I actually wrote an article on how to add multiple sidebars to your WordPress blog a while ago. Try it out here and let me know if that helps. If you go through it slowly you shouldn’t have any problems.
Forum: Themes and Templates
In reply to: need a step by step how to do RTLI’m not 100% sure of your situation.. but you can probably just add some CSS to your style.css document for titles. If you post your site’s link I can give you the exact code but you can probably just add:
h1 {text-align:right;}
to your CSS file.Look at 3 Different Ways to RTL your CSS for more help.
EDIT: I did just realise that you have both English and Arabic on your site… and adding that code will align ALL titles to the right. In this case… the simplest solution I can think of (but very messy), is to add the following code in your titles for Arabic posts (this is also without messing with style.css but if you’d rather do that then you can do it that way too):
<div style="text-align:right;">YOUR TITLE HERE</div>
That should work.