YukataNinja
Forum Replies Created
-
Forum: Plugins
In reply to: Pseudolocalize a pluginSo I’ve written my own program to do this. I’ll have it up on sourceforge hopefully this week.
Forum: Plugins
In reply to: [Plugin: LeagueManager] No Fixtures ShowingI did some debugging, it seems to crash on shortcodes.php:263:
include(LEAGUEMANAGER_PATH . "/view/$template.php");
With
$template = standings
, but then nothing will be printed from /view/standings.php. So it seems include is the problem, i tried usinginclude_once()
instead but that still failed. But yet this will work for /view/crosstable.php. Weird?Forum: Plugins
In reply to: [Plugin: LeagueManager] No Fixtures ShowingNo error messages?
None, page just stops loading. No hidden error message in the html either.
Forum: Plugins
In reply to: [Plugin: rotating-posts] questionsI was wondering if I could change the posted content to just show an image. I added a custom field where I would paste the URL of the image. I wasn’t sure what to change in the code…
In your custom field you would need to put in full html like
<img src="myurl.img"/>
then you don’t want to strip out the html tag so just override the content with your first line:$postContent = get_post_custom_values($RotatingPostImage);
if you want to be slightly more clever and just want to enter the URL in the custom field then this should work:
$postContent = get_post_custom_values($RotatingPostImage); $postContent = "<img src='" . $postContent . "'/>";
Forum: Plugins
In reply to: [Plugin: LeagueManager] No Fixtures ShowingThe only thing I got to work was
[leaguecrosstable league_id=4 mode=embed]
Forum: Plugins
In reply to: [Plugin: LeagueManager] No Fixtures ShowingWith the new version I can do the database update. And then the admin page looks to be working just fine. But when i use
[leaguestandings league_id=3 mode=extend]
my page still breaks. The page breaks when it reaches that code, there is no error output when it breaks.Forum: Installing WordPress
In reply to: Auto upgrade to 2.7.1 doesnt finish.To get back to this, after a while WordPress came back automatically and said there was a problem with the update and that I should run it again. I did and it worked perfectly the second time. It was probably a hiccup on my server end as it is a rather cheap host.
Great feature!
Forum: Plugins
In reply to: [Plugin: LeagueManager] No Fixtures ShowingLooking in my wp_options they are 2.6.5 and 2.6.5. I tried deactivate the plugin, remove it, manually edit wp_options to be 2.6.4 and 2.6.4 and then installed 2.6.4, then upgrade to 2.6.5 and the database was still missing the new columns. wp_options become 2.6.5 and 2.6.5 after the upgrade.
Forum: Plugins
In reply to: [Plugin: rotating-posts] questionsNone of this worked for me.
I tried all the advice given…
I even changed my index.php file to exactly resemble yours, and it did nothing to my site…
I’m at hhhead.com by the way, maybe my theme has something to do with it?If you’re using a custom theme you need to understand what code is actually being run to display the front page and insert
<?php rotating_posts(); ?>
there.Hi,
I also suggest if you would like to add an option to set the size of the rotating post area like height, weight and give the code to post any where you wantthat will help for people who don’t know much about CSS and also save time for who can edit.
if possible you can add more options like setting the color of the
1-post title
2-background
3-post contenteven with the color wheel to choose from.
there is some options you can add like – already designed template files.. i actually get this idea from another plug ins
also if you know about the plug-in PostLayout, it gives you an easy way to add the code. would you add some options like it ?
My intention was to expose the CSS easily so it can be edited by those that know how. I do not plan to add any functionality into the plugin itself if CSS could accomplish that task. I hope that someday there are more people who do make CSS for their theme to support this plugin, which themes I would link to on the wordpress page.
Forum: Plugins
In reply to: [Plugin: LeagueManager] No Fixtures ShowingI upgraded to 2.6.5 and still have the same error. I do not see any message about upgrading my database. How do I get that message to show? What I’m doing is going to the wp-admin -> league -> choosing league 1 and then I see the error.
Forum: Plugins
In reply to: [Plugin: rotating-posts] questionsI have installed the plug-in, it’s very nice, I wondering if you would add the Read More break by default after few words ?
So if i have added read more break or i didn’t , it will be there in the rotating post place.
It could be possible to add a user setting to end the post after so many characters, if there’s enough interest in that. But the functionality of the
<!--more-->
tag is already nicely built into WordPress. Thanks for the idea.Forum: Plugins
In reply to: [Plugin: rotating-posts] questionsIt is good job.
I am beginner of css and php programming. So, I can’t make any css file.
Can you send to your customized css version?
-jakeSorry, the customized CSS code at https://www.weareecs.com is proprietary. But if you want to get started, start with the provided css at https://demo.inderhees.net/wp-content/plugins/rotating-posts/rotating-posts.css
Forum: Plugins
In reply to: [Plugin: LeagueManager] No Fixtures ShowingUpdated to 2.6.4 and in the admin program I have these errors:
WordPress database error: [Unknown column ‘points_plus’ in ‘field list’]
SELECTtitle
,short_title
,logo
,home
,points_plus
,points_minus
,points2_plus
,points2_minus
,done_matches
,won_matches
,draw_matches
,lost_matches
,league_id
,id
FROM wp_leaguemanager_teams WHERE league_id = “1” ORDER BY id ASCWordPress database error: [Unknown column ‘post_id’ in ‘field list’]
SELECThome_team
,away_team
, DATE_FORMAT(date
, ‘%Y-%m-%d %H:%i’) AS date, DATE_FORMAT(date
, ‘%e’) AS day, DATE_FORMAT(date
, ‘%c’) AS month, DATE_FORMAT(date
, ‘%Y’) AS year, DATE_FORMAT(date
, ‘%H’) AShour
, DATE_FORMAT(date
, ‘%i’) ASminutes
,match_day
,location
,league_id
,home_apparatus_points
,away_apparatus_points
,home_points
,away_points
,winner_id
,post_id
,id
FROM wp_leaguemanager_matches WHERE league_id = “1” ORDER BYdate
ASCHopefully this helps. Also, if you can provide the table structures I can compare and see if there are any other differences.
Forum: Plugins
In reply to: Rotating, image-based headlines.I have written a plugin to do rotating posts. See if it’s what you’re looking for:
Forum: Plugins
In reply to: [Plugin: LeagueManager] No Fixtures ShowingI have updated to 2.6.3 and nothing loads. When I use the admin page it lists all the leagues and numbers, but when I go to a specific league it displays nothing at all.