Tee
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to remove linked intro text for post on homepageHey…
Yeah that’s what i did for the home.php i removed all of the
<p><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php print do_excerpt(get_the_excerpt(), $options['snippet_level2']); ?></a></p>
and replaced it with the
<p><?php the_content();?></p>
Here’s the home.php with the removed codes of the above: https://www.filedropper.com/home_5
Here’s the original home.php
https://www.filedropper.com/home_6Let me know what you think fellas.
Thanks again for your help ??Forum: Fixing WordPress
In reply to: embedded video clips in pop up windowHey Z,
Thanks for the help mate! To be honest, I’ll buy the plugin if it’s out there which I know it exists because I’ve seen them on some sites… however I want it to be in ajax, i like the effect better (you know when you click on it, it feels cooler) ?? hahaha
Forum: Fixing WordPress
In reply to: How to remove linked intro text for post on homepageno probs.
You know it did work the only problem was, it broke the style of the site which wasn’t cool ??
Here’s a snapshot: https://img26.imageshack.us/img26/4141/picture2vdv.png
Forum: Fixing WordPress
In reply to: embedded video clips in pop up windowThat would be nice to know… anyone?
Forum: Fixing WordPress
In reply to: How to remove linked intro text for post on homepageFellas..
I only have this code
<p><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php print do_excerpt(get_the_excerpt(), $options['snippet_level2']); ?></a></p>
I don’t have this code
<p>" title="<?php the_title(); ?>"><?php print do_excerpt(get_the_excerpt(), $options['snippet_level2']); ?></p>
So do you guys want me to change;
?>" title="<?php the_title(); ?>"><?php print do_excerpt(get_the_excerpt(), $options['snippet_level2']); ?></a></p>
to this?
<p>" title="<?php the_title(); ?>"><?php the_content(); ?></p>
Forum: Fixing WordPress
In reply to: How to re-arrange the categories in the nav bar?Hi Iridiax,
Thanks for the help!
I did what you suggested and it did re-arrange the menu only in alphabetical order… I was hoping I could define the position of the categories? Is that possible?
Forum: Fixing WordPress
In reply to: How to remove linked intro text for post on homepageHey Esmi,
Thanks!
I see what you mean!
Here’s a repetitive code that Im seeing all over the home.php
Here’s my home.php file https://www.filedropper.com/home_4 please let me know what I need to remove…?
Thanks again!
Forum: Fixing WordPress
In reply to: How can I create space between rows?Hi Esmi.
Thanks for the help – here’s what’s done and it’s look good! Thanks ??
https://adidas-talk.com/category/videos/
/* Video archive */
.vidlist li {
float: left;
width: 310px;
height: 150px;
margin: 20px 5px 20px 5px;
}Now I’m just going to close the space gab between the menu bar & the thumbnails.
Forum: Fixing WordPress
In reply to: How to re-arrange the categories in the nav bar?Alright…
So here’s the code
<?php wp_list_categories('orderby=ID<strong>&order=ASC&depth=1&hide_empty=0&title_li=</strong>'); ?>
do I delete what I highlighted in bold? If I were to arrange the categories, how would i do so given the fact that the links are not numeric but alphabitical
ex:
-Home
-News
-Photos
-Videos
-Archives
-Sneakers and so on.ex: https://adidas-talk.com/category/photos <— and not
https://adidas-talk.com/pd_id=2? or something like thatForum: Fixing WordPress
In reply to: How to re-arrange the categories in the nav bar?Oh and one other random question.
https://img40.imageshack.us/img40/9461/picture3crl.png <– look at the category “NEWS” that used to be called “uncategorized” – how come I can’t delete it, is it because that’s a category by default when installing WP (uncategorized) ?
Forum: Fixing WordPress
In reply to: How to re-arrange the categories in the nav bar?Hey Iridiax
Thanks for the reply.
Here’s all that i have in the header.php that relates to the categories. So Im kinda lost.. ?
<ul id="menu"> <li<?php if(!is_category() && !is_page() && !is_single()) { ?> class="current-cat"<?php } ?>><a href="<?php bloginfo('url'); ?>" title="Home"><?php print HOME; ?></a></li> <?php wp_list_categories('orderby=ID&order=ASC&depth=1&hide_empty=0&title_li='); ?> </ul>
Forum: Fixing WordPress
In reply to: How to make search into: Auto Suggestion?anyone?
Forum: Plugins
In reply to: WordPress Forum plugin compatible with IPB forum platform?Would be nice if someone dropped me some info ??
Forum: Plugins
In reply to: WordPress Forum plugin compatible with IPB forum platform?anyone? any thoughts?
Im sorry I can’t seem to understand… I tried to do what you asked and didn’t work.
Here’s the header code.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="https://www.w3.org/1999/xhtml"> <head profile="https://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title> <script src="/mint/?js" type="text/javascript"></script> <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats --> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <style type="text/css" media="screen"> <?php // Checks to see whether it needs a sidebar or not if ( !$withcomments && !is_single() ) { ?> #page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg.jpg") repeat-y top; border: none; } <?php } else { // No sidebar ?> #page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbgwide.jpg") repeat-y top; border: none; } <?php } ?> </style>