Quantcast
Channel: WordPress › Support » User Favorites: jonimueller
Browsing latest articles
Browse All 41 View Live

hj on "Categories and sidebar"

yeah, thanks. But Michael, this is not the main issue. The main issue is that your multiple elseif statements are not pulling in their respective content. It could be my coding substitution that's...

View Article



MichaelH on "Categories and sidebar"

Also, all page sidebars now display the slug name at the top, regardless of whether any category content is being called...which is a bit ugly! Need to delete the echo $page_name; There's also an echo...

View Article

hj on "Categories and sidebar"

I guess a link to see the problem would make it easier. Yeah, I wish I could show you, but I'm doing it on a MAMP install on my Mac so not live on the web. I guess I might try and find some webspace...

View Article

hj on "Categories and sidebar"

Hi Michael, Got it running on a live server now, still just test content at the moment: http://www.mulucaves.org/wordpress 'Home' uses the 'Introduction' static page (not sure how to get rid of...

View Article

MichaelH on "Categories and sidebar"

If I click on the Discovery of Clearwater Cave article link under the RGS Expedition 1977-78 page (and thus category) I get taken to the article....but now my articles list has disappeared from the...

View Article


hj on "Categories and sidebar"

Yes you're right, Discovery of Clearwater is an article I suppose that messes it up, although to the viewer it's just a page of information. I guess WP doesn't see it like that, though.. OK, how would...

View Article

MichaelH on "Categories and sidebar"

Could this be simplified even more -- if you are just trying to show, in a sidebar.php or via a Widget, posts related to the current page/post, then maybe a related posts plugin might be more flexible....

View Article

hj on "Categories and sidebar"

That's a possibility, although configuring that plugin itself sounds a bit of a job ;) I'd still be interested to learn how you would have implemented a custom fields solution? thx

View Article


loriston on "what username and password to use?"

I realy have no idea what to do to get my server back It is something i did

View Article


joannabenz on "Multiple Posts on a Page"

You can set any page to be the main page for posts. It doesn't necessarily have to be the home page. Whatever page you choose will collect all your posts and comments. If you're still confused, perhaps...

View Article

mayuxi on "Show author only once?"

Here is my solution from sidebar: <ul> <?php query_posts('showposts=50&tag=kolonki'); global $last_author, $posts_limit; $last_author = ''; $posts_limit=4; while (have_posts()) :...

View Article

xxyyzz1 on "I am trying to get help starting 3 days ago and noone helps me!"

I am trying to get some help. I waited free days and still no help from anyone. Please, can someone take 1 min to help me? I have this theme: http://89.45.171.142/ As you can see i have the option to...

View Article

Ipstenu (Mika Epstein) on "I am trying to get help starting 3 days ago and...

Posting multiple times in multiple topics won't help. Please keep in your original post, where others did reply. http://wordpress.org/support/topic/looking-for-something-like-this-3?replies=4

View Article


xxyyzz1 on "I am trying to get help starting 3 days ago and noone helps me!"

It is not the same thing. In my previous post i was trying to find a similar theme. In this post i am looking to modify my theme. And that post has 3 days. I am sure nobody will ever answer there so i...

View Article

jonimueller on "I am trying to get help starting 3 days ago and noone helps me!"

It takes more than one minute of someone's time to modify a theme, any theme, so ... time is money. At least for some folks here. I see that you got that theme from ElegantThemes. They've got a great...

View Article


Agus Suhanto on "I am trying to get help starting 3 days ago and noone helps...

You can create as many as thumbnail sizes from your functions.php in your theme. The following code snippet shows how I create four thumbnail sizes: default (150x150 pixels), mini (100x100 pixels), and...

View Article

xxyyzz1 on "I am trying to get help starting 3 days ago and noone helps me!"

i am a bit confused. you have to explain me slower :) i have the option to turn off thumbnails for homepage posts. Should i turn that off and start working on the code? or should i let it on and work...

View Article


xxyyzz1 on "I am trying to get help starting 3 days ago and noone helps me!"

this is what i have in functions.php <?php /* sets predefined Post Thumbnail dimensions */ if ( function_exists( 'add_theme_support' ) ) { add_theme_support( 'post-thumbnails' ); //index.php,...

View Article

Agus Suhanto on "I am trying to get help starting 3 days ago and noone helps...

First, if you want to use thumbnail in homepage then you should turn it ON. But from the problem description, it's likely that you can turn it ON or OFF on per individual post. Now, just focus on the...

View Article

averstedt on "How do I make a single-page-layout in WP?"

I want to make a WP-site as a single-page-layout. You know with vertical-scroll and all that. I have tried searching in google and in the forum but I don't seem to find the answer to my question: How...

View Article

orpatech on "How do I make a single-page-layout in WP?"

Let me know if u want a theme like this :)

View Article


Nasir Zia on "How do I make a single-page-layout in WP?"

you will have to buy this theme.. or create one :)

View Article


averstedt on "How do I make a single-page-layout in WP?"

I don´t want to buy a theme like that. I want to create one. So how do I do it? What do I need to do to put all my posts on a single page?

View Article

Jan Dembowski on "How do I make a single-page-layout in WP?"

If you haven't already done so, give this a read as a starting point. http://codex.wordpress.org/Theme_Development Then proceed onto this one. http://codex.wordpress.org/Stepping_Into_Templates

View Article

johnfotios on "How do I make a single-page-layout in WP?"

Of the top of my head I can imagine that would be quite easy to code. All you'd need is index.php, functions.php and style.css Maybe a loop.php as well and whatever other little features you'd like....

View Article


olyma on "How do I make a single-page-layout in WP?"

Do a web search for "how to build a wordpress theme" and you'll get lots of great tutorials, though a lot of older articles may come up in your search, the core functions and files are pretty reliably...

View Article

ecarbonated on "How do I make a single-page-layout in WP?"

This will work for what you need. It's a few snippets I found here and there but it will get the job done. <?php get_header(); // define how pages will display $args = array( 'sort_order' =>...

View Article

invot on "How do I make a single-page-layout in WP?"

Ecarbonated, you win my person of the week award. The code is tested and working! I did make some modifications so that the page works with anchored links: <?php get_header(); ?> <div...

View Article

initialsbr on "How do I make a single-page-layout in WP?"

I'm interested in doing the same. I'm exploring this _s theme as a starter... underscores.me ...and wondering where I'd put this code. If I put it in the functions.php file, I'd have to modify it, right?

View Article



n4zgul on "How do I make a single-page-layout in WP?"

invot, you posted your index.php?

View Article
Browsing latest articles
Browse All 41 View Live




Latest Images