PaulD
Forum Replies Created
-
Just in case anyone else is looking…
I recently took over a website that used this plugin and I was successful in using Meta Box plugin to provide the same functionality. There’s probably others out there but the site was already using Meta Box plugin for other content so it seemed only natural to keep using it.
Hope this helps!
PaulForum: Plugins
In reply to: [WooCommerce Admin] span tags showing on revenue pageI had this happen to me too. Try looking in your theme. Somewhere in there it’s modifying the price format.
Look for
add_action('woocommerce_price_format','function_that_changes_price_formatting')
In my case, it was not used on the front end so removing it solved the problem.
Thanks for the timeline! However I need it this week.
I was able to figure it out and it turns out to be quite easy and I now have a much deeper understanding of WP List Tables. ??
Thanks for the reply!
Saw that Locations was 4th or 5th on the list. Thought I would ask though.
I am trying to sell the idea of using wordpress for a specific project that requires location info for products. Not sure if I can wait long. I noticed that you have used various hooks and filters throughout your code. I am able to add my custom column to Stock Central but am having trouble figureing out were to add location data to product row.
Any ideas on how I can do this for the interim?
Thanks!
PaulForum: Fixing WordPress
In reply to: Can't login to admin using Microsoft EdgeNever mind!
Forget I was using the Limit Login Attempts plugin. Disabling that solved the login problem.
Now if I could just solve the “Microsoft can’t build a standards compliant browser” problem!
Forum: Plugins
In reply to: [Advanced Custom Fields: Font Awesome Field] Better Font Awesome conflictKnew I should have posted on his support page! Thanks again for the quick responses.
Forum: Plugins
In reply to: [Advanced Custom Fields: Font Awesome Field] Better Font Awesome conflictNo problem! I wasn’t sure who was conflicting with who and I was pulled away before I could post over on Better Font Awesome’s support page. Thanks for getting on this so quickly.
Forum: Plugins
In reply to: [Media Library Assistant] Warning: strpos() errorsWhy yes I did have one pdf that was missing an entry in the Base File column. It was a duplicate with a different file name (not sure why I had a duplicate) so I deleted the file. Enabled “Inserted In” in Settings and no errors.
As always you are awesome with support.
Thank you
Paul
Forum: Plugins
In reply to: [Media Library Assistant] Warning: strpos() errorsThanks David for the quick reply!
I do indeed have a couple of blank pages. I need atleast one for gravity forms confirmation page.
Disabling “Inserted in” removed the messages.
Take your time as I really don’t need the “Inserted in” check at the moment.
Thanks again for your help.
Paul
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] theme problemJust saw this in their documentation. Have you added the following
add_theme_support('sportspress')
in your themes function file?Forum: Plugins
In reply to: [LeagueManager] insert team are matchesYeah that hasn’t worked in awhile now. It’s kind of up in the air right now as to when this plugin will be updated as Monte, who did not originally author this plugin but graciously took time to try and update it, has been absent. For now you will need to just manually enter in the shortcode. You can find examples on the Documentation page. I just copy and paste from those.
Forum: Plugins
In reply to: [LeagueManager] Delete Columns from match resultsHow many columns do you have empty? I guess I mis-read your post. The below is done in your copied standings-extend.php file. If the only column you need removed is the one between POS and LOGO than just remove the line that has
echo $team->status
in it.Goals and Diff are a little different they are being output by the soccer.php file and are encompassed in the
do_action('leaguemanager_standings_columns_'.$league->sport, $team, $league->point_rule )
line of code.If you want the PTS column moved just move the line with
echo $team->points
to just below were is saysecho $team->title
You need to copy the standings-extend.php file, which you find under plugins/leaguemanager/templates, because if there ever is another update to the plugin (which may or may not happen) all the changes to this file will be lost. You need to create a new directory, under your theme directory, called leaguemanager. Inside that directory is where you put your modified standings-extend.php file.
Hopefully that helps!
Paul
Forum: Plugins
In reply to: [LeagueManager] Delete Columns from match results1 – That sounds like you need to modify the template used for displaying the standings table. You find that under leaguemanager->templates. Copy standings-extend into your_theme_directory/leaguemanager, which you need to create, and modify that template to whatever you want.
Those empty columns are probably the team status and logo.2 – I would use CSS to do that. Adding text-align: center to table.leaguemanager td did it for me.
Paul
Forum: Plugins
In reply to: [LeagueManager] Delete Columns from match resultsForum: Plugins
In reply to: [LeagueManager] extra column in matches tableYes you can. In the documentation it lists a bunch of filters and hooks that you can use. You will want to use matchtable_header_soccer and matchtable_columns_soccer.
You can see how to implement this in the soccer.php file under function __construct(). than farther down in that file under displayMatchesHeader() and displayMatchesColumns()
You will want to place the
add_action( 'matchtable_header_soccer', ' myNewFunction')
line in your themes function file, where myNewFunction is the name of the unidque function you will call to place in your Referee column, and than below that add your myNewFunction function just like they did in the soccer.php file. Do the same with matchtable_columns_soccer.