mskogly
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Yet Another Related Posts Plugin] YARPP caused host to disable my DBAny experience with w3 total cache? I am also curious on how we cab minimize the footprint of yarpp when saving new posts, it seems to be very db intensive. which options should we use to minimize the number of db queries when saving in admin and still get interesting results?
Forum: Plugins
In reply to: How to insert into post content from popupDo you think it is possible to put data into other inputs or textareas, like the excerpt? Trying to find some documentation for this.
Forum: Plugins
In reply to: [Plugin: AZIndex] Not working since WordPress 2.8 upgradeDoesn’t seem to be working on my site running wordpress 2.9.2. Nothing is show on the page that includes the shortcode.
Forum: Themes and Templates
In reply to: List categories with alphabetical headingsIt seems you have been able to solve this, can you tell me how you did it?
I’m looking for a way do to something similar, but with an addition of norwegian characters.
Forum: Fixing WordPress
In reply to: No robots.txt file@emmern : As the robot.txt WordPress generates is VIRTUAL you won’t find a “physical” robots.txt file in your /blog/ directory when you look for it. WordPress generates it on the fly in the same way that it solves pretty permalinks and many other url rewrites on your blog.
But what I want to know is how to stop wordpress from creating a virtual robots.txt file at all. I also have wp installed in a subdirectory, so it is no use to me to have it generate a virtual robots.txt file.
Any info on that?
Forum: Plugins
In reply to: [Plugin: Tweet Blender] Tweetblender breaks Edit postWe figured out that it does this only when both tweetblender and slidepress plugin is activated at the same time slidepress adds a button to the quicktags, but I have no idea why this error should happen with tweetblender active. Does tweetblender add anything at all to the add / edit post section?
unresolved thread over at slidepress
https://forums.slideshowpro.net/viewtopic.php?id=24389Forum: Plugins
In reply to: [Plugin: WP-Syntax] <?php goes to < ?phpAh, found the solution in another thread: Edit wordpress Settings under Writing and turn off “WordPress should correct invalidly nested XHTML automatically”
Forum: Plugins
In reply to: [Plugin: WP-Syntax] <?php goes to < ?phpI have the same problem on https://pappmaskin.no/2010/03/how-to-make-the-wordpress-plugin-get_the_image-work-with-timthumb/ but only when its on a new line, the ?php is correct when used inside other html, like the a href in the example on my site.
Why?
Sure it can link to the article in any form you want it to, I sort of explain it in this blog post https://pappmaskin.no/2010/03/how-to-make-the-wordpress-plugin-get_the_image-work-with-timthumb/
You can ask Get the image to return the data it finds as an array of data, and with this data you can build the link and the img tag in any way you want, instead of using the default method the plugin gives you.
Example //get the info about the image as an array instead of as a finished img tag and store it in a variable, like so
$get_the_image_as_array = get_the_image( array( ‘image_scan’ => true, ‘format’ => ‘array’, ‘width’ => 220 ) );//remove the // on the next line if you want to see what the array contains
//print_r($get_the_image_as_array);//example of things you can output
echo $get_the_image_as_array[link];
echo $get_the_image_as_array[url];
echo $get_the_image_as_array[alt];With this info you can build the a href manually, and use target=”_blank” if you want to, and the same with the img tag.
Forum: Plugins
In reply to: [Plugin: Get the Image] Get the image is only downscaling image!If you combine get the image with timthumb you can use timthumb to scale the image properly. I posted the code for how I do it on https://pappmaskin.no/2010/03/how-to-make-the-wordpress-plugin-get_the_image-work-with-timthumb/
Forum: Plugins
In reply to: [Plugin: Get the Image] I need just the url of the image returnedI’ve taken a look at the code for Get the image, and I’ve found a way to do it. The info seems to be missing from the readme/documentation (for some reason), but the thing to do is:
//get the info about the image as an array instead of as a finished img tag and store it in a variable, like so
$get_the_image_as_array = get_the_image( array( ‘image_scan’ => true, ‘format’ => ‘array’, ‘width’ => 220 ) );//remove the // on the next line if you want to see what the array contains
//print_r($get_the_image_as_array);//example of things you can output
echo $get_the_image_as_array[link];
echo $get_the_image_as_array[url];
echo $get_the_image_as_array[alt];Couldn’t quite figure out the backticks in this forum, so if things are fract here, go to https://pappmaskin.no/2010/03/how-to-make-the-wordpress-plugin-get_the_image-work-with-timthumb/ to see the entire code I now run on my site.
Thanks for a great plugin by the way!
Forum: Plugins
In reply to: [Plugin: Get the Image] I need just the url of the image returnedGoogle keeps sending me on a loop here, so I have to repeat the question so many are asking. Is there a way to modify the plugin so we can get it to return the url to the image, or an array. Or, if that is already possible, to have it documented a little better for noobs to understand?
Forum: Plugins
In reply to: [Plugin: More Fields] 2.9 problemsWon’t collapse fore me at all, but the dags showed up automatically. version 2.9.2 of wordpress. But I can’t move the box to the left column. It is set to left in the admin, but its placed underneath categories on the right. I can movie it by dragging, but if i save or refresh etc, its back on the right.
Forum: Fixing WordPress
In reply to: 2.5 Admin Ajax Javascript BrokenI isolated it to the Feedwordpress plugin, if I activate it the drag and drop in the widget section stops working. WordPress 2.5 and 2.5.1
Weird stuff.
Forum: Fixing WordPress
In reply to: 2.5 Admin Ajax Javascript BrokenWhen I deactivate all plugins drag and drop of widgets starts to work again. Hmmm.