bitziz
Forum Replies Created
-
Forum: Plugins
In reply to: Display RSS news feedWhere do I signin? That’s what I had trouble finding. Thanks for the help.
Forum: Plugins
In reply to: Got a question. Can you add a post but have it notHow to configure the frontpage to show nothing but sticky?
Forum: Plugins
In reply to: Display RSS news feedIt is in my blog. Under WP Codes. The instruction is straight forward. I dunno, maybe if many people don’t get it I will try and explain in more detail. As to WP wiki, I’m not sure how to add stuff to it so some pointers would be more than welcomed.
Forum: Plugins
In reply to: RSS feeds in blogForum: Fixing WordPress
In reply to: How add code snippets?It’s something that you can create yourself in php.
It simply does a bunch of string replaces.
Replace < with <
Replace > with >
Replace ' with '
Replace " with "
You can do that with the following simple PHP codes, assuming your input data is $data.
$data = str_replace("<", "<", $data);
$data = str_replace(">", ">", $data);
$data = str_replace("'", "'", $data);
$data = str_replace('"', """, $data);
That should take care of the string replaces.Forum: Your WordPress
In reply to: Check this outlol… opps… now i feel like dumbass
https://www.blog.jydesign.biz
sorry guysForum: Fixing WordPress
In reply to: How add code snippets?Damn… it doesn’t work it adds and <br> to the code. I will try the code encoder then.
Forum: Fixing WordPress
In reply to: How add code snippets?I just ended up using the textarea code, works out pretty well though, check this out
https://blog.jydesign.biz/index.php?cat=5Forum: Plugins
In reply to: Semi-Coppermine integrationOh ok. I wrote my own code to do what I wanted. It’s really simple actually as you can see above. Just select all the images, find the max id and do a rand from 1 to max. The album id you can get once you have the pic id. I will look at the CPG code to see how they figure out which position the pic is in but as it stands now the link will display the album view so it’s not too severe anyhow. Just would be nice that’s all. I will download the module and play with it.