nate311
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 4.4 getting Aw Snap! error when pasting into editor in ChromeOK. Do you have anything helpful to add on this issue?
Forum: Fixing WordPress
In reply to: 4.4 getting Aw Snap! error when pasting into editor in ChromeBump.
Same issue with Chrome for me. Using a custom made theme and has never been a problem until today. Every time I past html code into the “text’ editor it throws the “Aw Snap” page and crashes.
Latest WP
Latest ChromeForum: Plugins
In reply to: [SVG Support] Should this still work?Same problem here.
Error message: “3012-asset-logo.svg” has failed to upload due to an error
Sorry, this file type is not permitted for security reasons.Same message as would appear without your plugin activated.
Forum: Plugins
In reply to: [Enable Media Replace] Not working with 4.1Can confirm. Not working in 4.1 – please update.
Nowhere is the option to replace media anymore.
Forum: Plugins
In reply to: Pull all post/page images for slider?Can you elaborate a little on what you mean by ATTACHED and not hyperlinked? I’m trying to achieve the same thing here, using slightly different code:
<div class="flexslider"> <ul class="slides"> <?php $attachments = get_attached_media( 'image', 36 ); foreach($attachments as $attachment) { $img = wp_get_attachment_image_src($attachment->ID, 'medium'); if($img !== false) { ?> <li><img src="<?php echo $img[0]; ?>" /></li> <?php } } ?> </ul> </div>However, the images do not show up in the browser, although they DO show up in the source code, strangely. I am testing locally, using MAMP, and that could present an issue on why they’re not showing up.
Forum: Plugins
In reply to: [Multiple Featured Images] Featured Image 2 is not showing up on SiteI can confirm this. Featured image 2 is not showing up in the dashboard. Only lets me upload one featured image. No options in the screen display either. Little help?