j2zo
Forum Replies Created
-
Forum: Plugins
In reply to: Permalink not redirected to new oneHi Jordan,
What version WordPress are you running, I’m using redirection on the latest and it’s running properly. If you need to setup a lot of redirect rules at once you should create a spreadsheet to upload to the redirection plugin which can be found in it’s options page. This plugin uses WordPress powered redirects by default, but you can configure it to run off the .htaccess file if you’re running on an Apache web server.
Forum: Plugins
In reply to: [Contact Form 7] Error When Submitting FormThis error message usually displays when Contact Form 7 has configuration errors, are all the emails spelled correctly in the dashboard and does the “from” field have an email that matches the same domain that the form is running on? Without this info set properly the form can’t complete the submit process.
Hey Guys,
Found a temp solution for this problem. Just wanna start by saying thanks first for such a great plugin I’ve used it a couple times on different projects here and there. Anyways, opening up _output_gallery.php and going down to where you can see where the gallery is actually be generated and output to the page there is:
$link = '<a rel="' . htmlspecialchars($album->link) . '" class="fbPhoto" href="'.$photo->source . '" title="'.$caption_with_br.' " ><img src="' . $photo->picture. '" alt="" /></a>';The above code is around line 258. I couldn’t exactly find out where the images were being resized in the plugin, but for now I just changed the URL that is in the img tag so instead of having $photo->picture just use $photo->source so you get the full size of the image and then you can use CSS to scale it down to a desired size. Hope this helps thanks again for a great plugin!