ilovetomhartman
Forum Replies Created
-
Forum: Plugins
In reply to: [Image Watermark] how to bulk watermark for 650 images1. Switch Media page to list view
2. Screen Options (tab at the top right) -> Change “Number of items per page” to 650
3. Checked all the items (using the checkbox under Bulk Actions)
4. In the Bulk Actions dropdown, select Apply WatermarkEach image will be done one at a time via Ajax, so don’t navigate away from the page until it’s done.
If you have a large number of images you don’t want watermarked, use the filters to try and reduce the number of unwanted images. You can also use the browser console and a bit of javascript to check off the boxes you want.
Forum: Plugins
In reply to: [Duplicate Menu] Is this plugin still workingTry changing line 107 in wp-content/plugins/duplicate-menu/duplicate-menu.php from :
function options_screen() {to:
static function options_screen() {Then change line 138 from:
<?php wp_nonce_field( 'duplicate_menu','duplicate_menu_nonce' ); ?>to:
<?php wp_nonce_field( 'duplicate_menu','duplicate_menu_nonce' ); ?> <?php wp_nonce_field( 'update-nav_menu', 'update-nav-menu-nonce' ); ?>Forum: Fixing WordPress
In reply to: An error occurred in the upload. Please try again later. 4.0.1.Thanks jfrancofarias, a timed out session was my problem. Just had to log back in.
I fixed this by adding the following code to line 761 on /wp-content/plugins/tweet-blender/js/main.js:
tweetJson = jQuery.parseJSON(tweetJson);Forum: Plugins
In reply to: [Captcha Code] Bug – No Characters on imageThis worked for me. Thanks!
Forum: Requests and Feedback
In reply to: request to change "Email me whenever" labelI’d concur with this suggestion. The labeling is indeed confusing.
Forum: Fixing WordPress
In reply to: Blank white space below footerI’d like replace your .footer and .footer2 classes from this:
.footer { background-color: #212121; }
.footer2 { background-color: #212121; }
To this:
.footer {
background-color: #212121;
position: relative;
bottom: 0;
width: 100%;
}.footer2 {
background-color: #212121;
position: relative;
bottom: 0;
width: 100%;
}Forum: Fixing WordPress
In reply to: Blank white space below footerI take it you have a larger screen than mine. If that’s the case I won’t be able to recreate the problem.
But I seem to remember something similar to this happening to me before. Did you make the theme yourself? It doesn’t look like the footer divs have any positioning on them so they will naturally show right after the main content leaving the rest of the area blank.
Or you can make the background-color of the page the footer’s background and just assign a background-color to the main content div which is also a popular route.
Forum: Fixing WordPress
In reply to: Blank white space below footerI don’t see a space in Chrome, IE, FireFox or Safari. Perhaps it’s a local issue? Have you seen this problem on another computer?
Forum: Fixing WordPress
In reply to: Pages page blank after upgrading to 3.4.2Without seeing the server or the database it’s hard to pinpoint the problem. If you’ll send me temporary access to your FTP and database I’ll gladly help.
Forum: Fixing WordPress
In reply to: Blank white space below footerI don’t see a white space. What browser are you seeing this in?
This solved the problem for me:
Comment out line 1178 on feedwordpress.php (located in the wp-content/plugins/feedwordpress folder).
So this:
if (function_exists('wp_admin_css')) : wp_admin_css('css/dashboard'); endif;Turns into this:
if (function_exists('wp_admin_css')) : //wp_admin_css('css/dashboard'); endif;Not sure if it causes any other problems but so far I haven’t had any issues.
Forum: Fixing WordPress
In reply to: WordPress Video Plugin Not WorkingYou have to enter the shortcode when you’re on the HTML tab. Have you tried that? Apparently if it gets wrapped in a <p> tag it won’t work.