Bea Cabrera
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Pagination links empty on custom post type queryIt worked simply by changing the WP_Query method to query_posts(). And obviously getting rid of the reset_postdata function, which would ruin all the links. Be aware of the difference in ‘page’ and ‘paged’ for query_var depending on wether you’re on the blog or not.
Here’s a stripped down version that works:
$curpage = (get_query_var('page')) ? get_query_var('page') : 1; $snapshotargs=array( 'posts_per_page' => 10, 'post_type' => 'qd_galleries', 'qd_galleries_cat' => 'snapshot', 'paged' => $curpage ); query_posts($snapshotargs); $pagecount = $wp_query->max_num_pages; while(have_posts()):the_post();?> <h1><a href='<?php the_permalink();?>'><?php the_title();?></a></h1> <p> the_excerpt();?></p> <?php endwhile; ?> /** Note that the pagination is outside of the loop <p class='pagination-links'> Showing page <?=$curpage;?> of <?=$pagecount;?> <?php previous_posts_link();?> <?= ($curpage > 1 && $curpage != $pagecount)?'|':'';?> <?php next_posts_link(); ?> </p>
Cheers!
Forum: Your WordPress
In reply to: Feedback welcomedoh! I do it by hand. It is easier for me if I ever switch folders in my server to keep the references and avoid broken links. Sorry to disappoint! :s
Thanks @jeffpearsonusa. I’m glad you liked them! Is there anything you would change?
Forum: Themes and Templates
In reply to: How to activate showcase page templateAt this point I would recommend that post into the Oxygen support forum or write to them if there is any support contact information available.
I’m sorry.
Forum: Your WordPress
In reply to: Old Timers' Transition Into WordPress+1 @esmi. Very nicely put. I need +1s! Damn Facebook/G+!
Forum: Your WordPress
In reply to: Please give me some feedback on my new website!oozes coolness! loving the typography!
Agree with @johnpope.
Forum: Your WordPress
In reply to: Old Timers' Transition Into WordPressThe impression that I get from your… let’s face it, moaning, is that when you were younger you could learn faster than now. It doesn’t take rocket science to know the name for this: aging. Perhaps time is catching up with you but you shouldn’t just blame it on a CMS that’s the most popular blogging system on the Internet. Sometimes the problem is ours.
By the way, how’s your php/jquery going? Could you build a CMS from scratch? If not you’ll have to open your mind and stick to what there is (which by the way is great). If you do, great for you! Use it.
As for the term codex or codices… yeah, whatever. Just don’t expect the whole world to speak YOUR language.
Forum: Your WordPress
In reply to: My first wordpress siteWhy don’t you put images in as well?
Illustrate each post witha featured image and boost a little color in it! ??
Forum: Your WordPress
In reply to: Feel free to review my new sitesI like the way they’re heading but the parent one seems unfinished. No images showing.
Forum: Your WordPress
In reply to: How to optimize my WordPress blogI have just starting using the SEO Ultimate wordpress plugin but I can’t give reviews on it yet.
Check out all the links for the images! Thay’re all missing :S.
Forum: Your WordPress
In reply to: A new cooking siteI have a friend that started of a cupcake online business without knowing anything about photography. And now she’s taking some seriously good pictures! https://www.elhornodelucia.es/ I can tell you all those photographs are hers and she just uses natural light and home-made reflectors!!
Perhaps you should consider shooting on weekends if the food can wait in the fridge or buying a Softbox (or constructing one yourself: https://www.thefoodinmybeard.com/2011/01/how-to-build-a-softbox-photography-light.html)
cheers!
Forum: Your WordPress
In reply to: How can I improve?I like the “strangeness” of the background in the Corals webpage. But careful with bigger screens! Perhaps you could check out the css property background-size: cover.
The others (specially Duo and Tanjong) have far too much too small writing on the homepage. It’s fine for an “About” page, but if you put that as your homepage… uff, I’m not reading sorry!
Hope it helps! ??
Forum: Your WordPress
In reply to: Feedback is certainly appreciated for my siteI agree with everything. Being the color scheme your strong point (you can never go wrong with black, white, red) why don’t you play with it a little more to correct some of the problems? For instance, I would do the first line from the headline in a lighhter shade of white and the second line from the headline (the quote in italics) a little smaller in size. Both of them should wrap to the end of the page though.
Hope it helps! ??
Forum: Your WordPress
In reply to: My New Wp BlogThe site is cute and clear. While the logo is cute I will leave out the line “Benim modam, benim hayatim”, or at least do it pink like the name. Red and pink clash a little. Also, in general, lot of square blocked sections looks a little old in webdesign. Perhaps it would look more open and modern if you were to set border:0 to some of those borders.
?? Hope it helps!
Forum: Your WordPress
In reply to: New website built for Non fault car accident site what do you think?I agree with @austastic on 1, 2 and the Edit.
Also, I have a big screen. Many people do have more than 1280px wide. This means I get to se the blue background that does not match the background image. My recommendation is to cut this background image and only use the top part, difussing the edges and chosing a blue tone that matches exactly the blue on the edges of the image. This will also save loading time because it will be smaller, but not that that is a problem here.
cheers!
Forum: Your WordPress
In reply to: A new cooking siteAnd oh! When clicked through, the single page should display a bigger image of the food. Go on and show of your food with big images! People who visit your site want to be able to see :).