jopacic
Forum Replies Created
-
Forum: Plugins
In reply to: [Top Authors] Links not working…I think that problem is in default URL on author’s name (href of
<a>element surrounding author’s name), it’s using%linkposts%instead of%linktoposts%(which is on<a>around gravatar image, and works fine).I fixed this, and after that it works just fine!
Forum: Plugins
In reply to: [WooCommerce] [Plugin: WooCommerce] Checkout not workingI had similar issue, but solution was to update to 1.6.6 version.
Just sharing my experience for someone’s future reference!
Forum: Plugins
In reply to: [WooCommerce] Get product price in custom loopHelga, you rock.
I used first suggestion, and in that case
$priceis an Array, whose[0]index is the price.But when I try this on a product that’s on sale, for example, it costed $3000 and now is $2000,
$price[0] = 3000. How can I access the actual, discount price?Forum: Plugins
In reply to: [LeagueManager] [Plugin: LeagueManager] Problem with inserting shortcodesCan you please attach a screenshot?
1. did you edit any of the php files?
2. styling of this kind doesn’t come from LM, but from your theme. Open your page and inspect the element to learn which css file gives it style and edit it!
Forum: Plugins
In reply to: [LeagueManager] [Plugin: LeagueManager] Add more info fields to clubHere’s the story behind this:
http://www.popwebdesign.net/popart_blog/2012/07/09/leaguemanager-custom-team-fields/Thanks for pointers m0n0!
Forum: Plugins
In reply to: [LeagueManager] [Plugin: LeagueManager] Add more info fields to clubI’ve surfaced with a solution! I’m gonna write a blog and post a link here so everyone can use it for future reference! Please bare with me a few hours 🙂
Forum: Plugins
In reply to: [LeagueManager] [Plugin: LeagueManager] Add more info fields to clubHey m0n0, I’ll take a look, and post anything I came by.
Anyone else that has more info is more than welcome to post!
Forum: Plugins
In reply to: [LeagueManager] [Plugin: LeagueManager] members add / join teamsLack of support can be unmotivational factor here,
but maybe all of us exchanging experience can lead you to answers.Definitively you should look into source files of plugin, and maybe figure out something?
Forum: Plugins
In reply to: [LeagueManager] [Plugin: LeagueManager] really need help with phpIf I got you right, you should assign value to $league_id and then insert your PHP code to file.
The second one is WP shortcode, you just put this with angle brackets into your WordPress post/page, or you can use do_shortcode PHP function to insert it into your PHP file, more info: http://codex.wordpress.org/Function_Reference/do_shortcode
Example: <?php echo do_shortcode( “[matches league_id=1 team=3]” ) ?>