Native Imaging
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 3.5 causing major jQuery and JavaScript errorsdefine(‘CONCATENATE_SCRIPTS’, false);
Seemed to fix the problem i was having. Is this a permanent fix?Thank you by the way. was completely stumped today on this issue.
After deleting every plugin, activating the default WP 2010, 2011, & 2012 themes, the entire admin backend is still broken. No way to edit pages, posts, menus, widgets, or even re instate my database to a previous backup. Any thoughts on this?
Forum: Fixing WordPress
In reply to: [Twenty Twelve] New Gallery Notification is permanently stuckI pin pointed the menu sub links to a font plugin… it’s probably another plugin awaiting updates for 3.5 causing the prompt to not dismiss.. working on pin pointing it now…. I’l follow up soon.
thank you for your response.
Forum: Fixing WordPress
In reply to: [Twenty Twelve] New Gallery Notification is permanently stuckyes i’m sorry. correction> WP 3.5 – 2011
keep developing. thank you for your reply. I will buy when it is a bit more well rounded.
Ok. Interesting. Would this be used for page ID’s, or product categories?
Thank you for the code. Will try to implement this as soon as the Products are catalogued.
I too am curious about this. I have a community site setup where multiple vendors need to sell products on the same site. Is there the possibility of using different paypal accounts to direct payments to the correct vendor based on Product Categories?
Or is there possibly a feature in PayPal for setting up sub-merchant accounts or something of that sort?AHA!! the image must be larger than 1000 x 288 pixels to work>>
Quick Question, I am using a totally different ratio for my header images, would you happen to know where to change these min width requirements in the WP system?
“Remove Image
This will remove the header image. You will not be able to restore any customizations.”Is this something that is possibly switched in the tables and has to be manually reset? Ive tried switching themes. Seems that once this feature is clicked one time, thats it.. no going back. ?
well that just makes the default wordpress header images show. before, when a fresh install of WP 2011, if the remove header image button is not clicked, and you add a featured image for a page/post, it would display that image in replace of the header. But once the remove header button is clicked, thats it, seems like theres no going back to getting the featured image to show in the header.
Nice Plugin.
Would be nice if it would replace the “links” in the admin bar, or replace it all together.
Also, one issue, when using an external image url, the “insert into post” button disappears when the URL field is populated. This is pretty important for us since we like to point to our website icons, and may update them periodically and have all of our websites updates the link icons automatically. Thanx though, neat plugin 🙂Wow, thank you! You have been so much help. I definitely learned something very useful with this info & the conditional tags page.
Everything worked the way it should have, except, it seems I’m having a conflict with the javascript or php… not sure exactly..
here’s the site:
http://n8ryan.com/
http://n8ryan.com/pictures/& here’s what i have in the header: (Any help would be greatly appreciated, so close to using this method :))
<?php // Check to see if the header image has been removed
$header_image = get_header_image();
//check for front page and show slider
if( is_front_page() ) :
echo slider_pro(1);
elseif( is_page(‘pictures’) ) :
echo slider_pro(2);//otherwise check for header image
elseif ( $header_image ) :
// Compatibility with versions of WordPress prior to 3.4.
if ( function_exists( ‘get_custom_header’ ) ) {
// We need to figure out what the minimum width should be for our featured image.
// This result would be the suggested width if the theme were to implement flexible widths.
$header_image_width = get_theme_support( ‘custom-header’, ‘width’ );
} else {
$header_image_width = HEADER_IMAGE_WIDTH;
}
?>
“>
<?php
// The header image
// Check if this is a post or page, if it has a thumbnail, and if it’s a big one
if ( is_singular() && has_post_thumbnail( $post->ID ) &&
( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), array( $header_image_width, $header_image_width ) ) ) &&
$image[1] >= $header_image_width ) :
// Houston, we have a new header image!
echo get_the_post_thumbnail( $post->ID, ‘post-thumbnail’ );
else :
// Compatibility with versions of WordPress prior to 3.4.
if ( function_exists( ‘get_custom_header’ ) ) {
$header_image_width = get_custom_header()->width;
$header_image_height = get_custom_header()->height;
} else {
$header_image_width = HEADER_IMAGE_WIDTH;
$header_image_height = HEADER_IMAGE_HEIGHT;
}
?>
<img src=”<?php header_image(); ?>” width=”<?php echo $header_image_width; ?>” height=”<?php echo $header_image_height; ?>” alt=”” />
<?php endif; // end check for featured image or standard header ?>
<?php endif; // end check for removed header image ?>Cool, thank you!! Going to try it right now…
I had one other question about this if statement..
Lets say, I have a “Pictures” page for the site that would use another slider specifically for picture posts and have “echo slider_pro(2);” for that page… how would a create a hook for that page like the “is_front_page() )”? to something such as “is_pictures_page() )”?
If thats possible. Not sure if I would need to add custom hooks for that, or a separate template?
Hopefully I made enough sense to understand that.
Thanx again for your help! 🙂
Forum: Plugins
In reply to: Permalinks break every time admin edits a page.Im with you on this one? Let me know if you found a fix.
thank you, 🙂
Im still having this issue after deleting the plugin and removing all of its tables from the SQL. have you figured out how to resolve the broken slugs issue?