kiwipearls
Forum Replies Created
-
Forum: Plugins
In reply to: (Plugin : FeedWordPress) ExplanationFeedwordpress turns the syndicated feeds into posts.
If you want RSS feeds on your pages try this code in your page
<h2>WoW Blues Overview</h2> <ol> <!--rss:rss_feed_url:=https://www.wowblues.com/feed.xml,num_items:=25,random:=false--></ol>
I have used an exmple feed.
I am pretty sure I am not using a plugin to achieve this.
Forum: Plugins
In reply to: [Plugin: FeedWordPress] Formatting FeedManaged to do a CSS override as it was the feed that had the formatting in it.
Forum: Plugins
In reply to: [Plugin: WP-O-Matic] Added functionalityHi David,
She has uploaded a copy to her website: https://slatetechpdx.com/our-work/
It still needs some fixes and tweaks and you need to go into phpmyadmin to create a unique hash column. There is another post in this forum about how to do that.
Forum: Plugins
In reply to: [Plugin: WoW-Character-Display] Class and Profession images – not showingYou can change the image location in the file wow_armory_render.class
At line #148
Change
$this -> content .= "<div class=\"armory_char_image\"><img src=\"https://$rt.wowarmory.com/images/portraits/wow" . ($char_attr[ 'LEVEL' ] < 70 ? '' : ($char_attr[ 'LEVEL' ] < 80 ? '-70' : '-80')) . "/" . $char_attr[ 'GENDERID' ] . "-" . $char_attr[ 'RACEID' ] . "-" . $char_attr[ 'CLASSID' ] . ".gif\" width=\"$gfx_width\" class=\"armory_char_prof\" /></div>";
To
$this -> content .= "<div class=\"armory_char_image\"><img src=\"https://$rt.wowarmory.com/_images/portraits/wow" . ($char_attr[ 'LEVEL' ] < 70 ? '' : ($char_attr[ 'LEVEL' ] < 80 ? '-70' : '-80')) . "/" . $char_attr[ 'GENDERID' ] . "-" . $char_attr[ 'RACEID' ] . "-" . $char_attr[ 'CLASSID' ] . ".gif\" width=\"$gfx_width\" class=\"armory_char_prof\" /></div>";
The only thing blizard changed in the location path of the images was a underscore before the word image so it whas /images/ now it is /_images/
Technically, if you wanted your own images, you could change that path to your directory but you’d need the same image names that blizzard uses I think. I’m not sure. But you could always fiddle around with it.
Forum: Plugins
In reply to: [Plugin: WoW-Character-Display] Use WoW Armoury 3d image instead of 3dArmoryI am not very good at coding
Current code is:
// 3D Armory flash object if( $display_3darmory ) { $display_3darmory_width = empty( $display_3darmory_width ) ? 150 : $display_3darmory_width; $display_3darmory_height = empty( $display_3darmory_height ) ? 150 : $display_3darmory_height; // eu,us,tw,kr,cn $zone = $rt == 'www' ? 'us' : $rt; $this -> content .= "<div class=\"3darmory_object\">"; $this -> content .= "<script type=\"text/javascript\" src=\"https://www.3darmory.com/api/toon/$zone/$server/$character/$display_3darmory_width/$display_3darmory_height\"></script>"; $this -> content .= "</div>"; $this -> content .= "\n<style type=\"text/css\">.toon_layer a { display:none }</style>\n"; }
My attempt at modifying is:
// 3D Armory flash object if( $display_3darmory ) { $display_3darmory_width = empty( $display_3darmory_width ) ? 150 : $display_3darmory_width; $display_3darmory_height = empty( $display_3darmory_height ) ? 150 : $display_3darmory_height; // eu,us,tw,kr,cn $zone = $rt == 'www' ? 'us' : $rt; $this -> content .= "<div class=\"3darmory_object\">"; $this -> content .= "<iframe src=\"https://www.wowarmory.com/character-model-embed.xml?r=$server&cn=$character&rhtml=true" scrolling=\"no" height=\"$display_3darmory_height" width=\"$display_3darmory_width" frameborder=\"0"\"></iframe>"; $this -> content .= "</div>"; $this -> content .= "\n<style type=\"text/css\">.toon_layer a { display:none }</style>\n"; }
Forum: Plugins
In reply to: [Plugin: WP-O-Matic] Added functionalityOh cool, I am following you on https://github.com/elizabethcb and Anxiously await WP-O-Matic there ??
Forum: Plugins
In reply to: [Plugin: WP-O-Matic] Added functionalityHi Elizabeth,
How is this project coming? Looking forward to its release.
Forum: Plugins
In reply to: wpomatic duplicate posts fix for wordpress 2.8?Hi Elizabeth,
My problem was that I couldn’t enter anything in the tag’s field for each campaign feed. Ie My site is a wow site, so I would have a feed for druids, so I would want to use tags like Druid, Feral, Balance, Bear, Restoration etc.
But instead just had to use categories. But I only wanted one category for each feed. But use the tags for other options.
I have completely disabled Wp-O-matic for now. So I hope I have explained that ok from memory.
Forum: Plugins
In reply to: wp-o-matic RSS plugin being sold by ownerThe only other bug I have is that the Wp-Omatic stats that you normaly see in the dashboard, appears on my forums and group pages.
I think it has something to do with the header.
I would provide a screeny, but Photobucket is down right now. But there is another thread here in the WP-O-Matic forum with someone else having the same issue.
Forum: Plugins
In reply to: wpomatic duplicate posts fix for wordpress 2.8?I’d be sure to try out your new project. As long as it more or less does what Wp-O-Matic does.
I like the fact that with each campaign I can have it set to get as many articles as I like – which is normally 2 from each one. As I have quite a few feeds that I gather articles from. I like choosing categories for my campaigns.
Also, tagging, I could never get tags to work in Wp-o-matic. That would be brilliant if you could.
I’ll be checking back here often to see what’s happeing, Thank-you Elizabeth.
I think this is to do with the header problem – I get this on my dashboard and due to using buddypress I also get it in my forum area and groups area.
I am still waiting for a fix.
Forum: Plugins
In reply to: wpomatic duplicate posts fix for wordpress 2.8?I would like step by step instructions on how to apply that fix please Eliza.
If given the correct instructions on going in and modifying things via phymyadmin, I should be able to fix my wp-o-matic too.
I managed to follow creating a unique hash in the campaign feeds table. I think.
I went to the table, viewed structure, under actions clicked the unique button. It said:
An index has been added on hash ( Query took 0.9295 sec )
ALTER TABLE
wp_1_wpo_campaign_feed` ADD UNIQUE (
hash
)`But as for the processItem info, I do not know what or where to edit. Which file?
I eagerly look forward to hearing from you.
Forum: Plugins
In reply to: Plugin to Auto change URL’s in Posts?Bumping so it does not get lost.
Forum: Plugins
In reply to: FeedWordPress Not Pulling In New StoriesI think I have figured out why this problem was happening to me.
I manually edited the feed name in the feed settings. I did this so I could identify which feed was which.
So I think this affected it somehow, as I unsubscribed from them all again and re-set them up. And all feeds are importing properly now.
Forum: Plugins
In reply to: FeedWordPress Not Pulling In New StoriesI have this problem too, but I don’t have the FeedWordPress Duplicate post filter plugin.
I originally had pulled a RSS feed from the World of Warcraft Armoury of my characters latest activity. So it pulled everything up to the current date. Worked perfect.
I then decided to unsubscribe and then use the RSS filters of this feed so that I could categorise my activity. ie based on Achievements, WoWLoot etc. So now I have 3 RSS feeds/w filters to the same feed.
https://gamer.mementoweb.net.nz/kiwipearls
Feeds:
https://www.wowarmory.com/character-feed.atom?r=Ghostlands&cn=Bluebelle&filters=LOOT,RESPEChttps://www.wowarmory.com/character-feed.atom?r=Ghostlands&cn=Bluebelle&filters=ACHIEVEMENT,RESPEC
https://www.wowarmory.com/character-feed.atom?r=Ghostlands&cn=Bluebelle&filters=BOSSKILL,RESPEC
But it has only imported feeds up to the 4th Jan. Can’t understand why it is not getting all the current feeds. I even deleted the cache and did another update and it imported nothing.
Look forward to hearing from someone on this.