person4659
Forum Replies Created
-
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] All time stats issueForum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Question about League Tableshi @roch,
League table widgets are paginated (that a word?). Is there not an easy way to disable that? Feature request for future if not, check box to disable/enable pages 🙂
No worries, figured it out now :/
Apologies..
Althought, I did notice, in your documentation, it says sportspress uses pages.php by default. It actually uses single.php (for me atleast anyway)
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Question about League TablesForum: Hacks
In reply to: Add option to set Featured Image as BackgroundOr, how would you modify the code above so that it only sets the featured image as background for posts in a specific category?
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Override ALL CSSWhilst I have your attention, league tables. Once I go over 10 clubs in a league, I get a page 1/2 navigation come up. How do I disable this so it just shows as many clubs as I like.
Also, is there a more efficient way to insert a league table (I have 2) in code than echoing the shortcode?
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Override ALL CSSOoooh….well that’s embarrassing!
My brain told me that the enable button was only for the custom bit :/
Thanks, seems to have solved the issue 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Override ALL CSSHi, thanks for the reply.
There is actually some inline css which is part of some php code, which adds !important at the end too, so It can’t be overwritten without modifying the plugin code. Normally I would just do that to make it behave, but I want to keep everything theme driven.
For the most part, my own CSS does seem to be working, but there are a few where this inline conflict comes in. Such as, the highlighted team in a league table. It defaults the background to white, and text to bold. If I try to define a background color, it gets overwritten by the inline !important.
I have a work around, which basically used a short line of Jquery to change the element className, but it’s a little hackey just to change some CSS…
Forum: Plugins
In reply to: [jQuery T(-) Countdown Widget] What shortcode do I ad?Woops…solved it…must learn to read properly! Although I do have another issue…I cant seem to get the the text (hours minutes etc…)and the digits on different lines.
for minutes and seconds they are on different lines like this
seconds
5but for days and hours they are on the same line
06DaysAny Ideas?
Forum: Fixing WordPress
In reply to: Truncate wp_get_archivesim fully capable of editing css lol i am a web designer! and yer i tried adding the css to its div first but then tried a p tag once it wouldn’t work…
Forum: Fixing WordPress
In reply to: Truncate wp_get_archiveswell ive just tried that placing the original code inside a paragraph and it did nothing. Im thinking maybe because it uses the wp_get_archives function and where ever that is called must put the content into a
<li>
really im looking to modify the actual function in some way, but 1 im not entirely sure where it is..i think i found it in wp-includes/general-template.php but then the function was huge so had no idea where to put any piece of code which would limit the amount of characters displayedForum: Fixing WordPress
In reply to: Featured Content Gallery not working on serverbut then why does it work on localhost if it no longer compatible?
Forum: Fixing WordPress
In reply to: Featured Content Gallery not working on serverhmm yer i saw that earlier and noticed a while ago that their forum was dead…but locally i have the most up to date version of wordpress and it is the same on the server…
Forum: Fixing WordPress
In reply to: making a query for a specific pagenah its a skeleton theme which im coding myself…i dont have a live version atm; its only localhost.
is there a way to modify this query which i have running for the homepage so that it will only show on a specific page. you have category = 6, so maybe you could add some sort of page = pagename
<?php $args = array( 'numberposts' => 3, 'category' => 6 ); $lastposts = get_posts( $args ); foreach($lastposts as $post) : setup_postdata($post); ?> <div class="rumour-posts"> <div class="rumour-posts-image"> <?php the_post_thumbnail('post-image'); ?> </div> <div class="rumour-posts-header"> <h2><a>"><?php the_title(); ?></a></h2> </div> <div class="rumour-posts-text"><?php the_content('Read More...'); ?></div> </div> <div class="the-posts-line"> <hr /> </div> <?php endforeach; ?>Forum: Fixing WordPress
In reply to: making a query for a specific pagethanks for that,its quite useful. i would like it to show the featured image which is connected to the posts…any idea how i would do that? this is why i wanted queries.