limbo99
Forum Replies Created
-
Hi there, for a direct answer, just paste the following in your functions.php
// Change number of listings to 12.
add_action( ‘pre_get_posts’, ‘awd_listings_archive_posts’ );
function awd_listings_archive_posts( $query ) {if ( $query->is_main_query() && ! is_admin() && is_post_type_archive( ‘listing’ ) ) {
$query->set( ‘posts_per_page’, ’12’ );
}
}Forum: Plugins
In reply to: [Encyclopedia / Glossary / Wiki] Compatible with wultilingual site?OH great Dennis, thanks for the promt reply ?? i am quoting for a client. Good to know!
Forum: Plugins
In reply to: [Genesis Simple Share] Justify center or rightOK, so the above code works but if it goes in the plguin css not if inserted in the themes css. Any idea why?
Meanwhile this helps
Forum: Plugins
In reply to: [Genesis Simple Share] Justify center or rightHi there, RRay5, would you like to share how you fixed it ? thanks!!
I am trying something like:
.share-after {
text-align: right !important;
}But it is not working.
Forum: Plugins
In reply to: [Genesis Grid] Unusual pagination misalignmentHi Dan, just to thank you for posting this!! Awsome i had no idea where to start!
Forum: Plugins
In reply to: [Simple Lightbox] Reposition Prev / Next imagesThanks! that is simple and brilliant!
Just one more thing. I looked for slb_details and thought editing slb_nav was enough, which in a sense it is, but then i end up with text links… in the right position, but text links… those i can change in the admin, but could you point me in the right direction to get the buttons to display there?
I did this:
.slb_nav {position:absolute;top:5px;right:0px;}
So then i tried something like:
.slb_prev {background-image:url('../images/nav_prev.png'); no-repeat}
AND
.slb_nav .slb_prev {background-image:url('../images/nav_prev.png'); no-repeat}
Nothing happened, i think am close. In any case thanks, love the plug in!!