netmatt
Forum Replies Created
-
resolving
Nevermind, I disabled the plugin and all is working again. I will look for a less intrusive option for updating the notification emails.
Forum: Plugins
In reply to: [MediaRSS external gallery] Still works but had to make a change recentlyOtherwise, very happy, and resolving this!
Forum: Plugins
In reply to: [MediaRSS external gallery] Still works but had to make a change recentlyAlso, if you want to scale the actual image and not the thumbnail, change the index.php line 219-220 to:
case "image": return "<a href='".$item->get_link()."'><img src='".$meg_param["img_src"].$enclosure->get_link().$meg_param["img_src_param"]."' alt='".$enclosure->get_title()."' class='wp-post-img meg-img ".$classes["img"]."' /></a> ";The item->get_link gets the link to the actual deviantart page, and the enclosure->get_link gets the actual image. (versus using get_thumbnail and upsizing, which looks bad)
Posting to save people time fixing the same things… 🙂
Forum: Themes and Templates
In reply to: [Theme: Ares] Full width blog postsThat worked great, thanks again!
Forum: Themes and Templates
In reply to: [Theme: Ares] Full width blog postsGreat, thank I will give it a try! 🙂
Forum: Themes and Templates
In reply to: [Theme: Ares] Full width blog postsThanks for the offer! I have removed the sidebar, and late last night (LATE!) I got it to work by modifying the main index.php. I changed the col-md-9 to col-md-12.
I am using a Child Theme, and I tried to modify col-md-9 in the CSS of it, but nothing I did seemed to work. I would prefer that, as any theme upgrade I have to make this change again.
Below is a snippet of the before/after:
<div id="content" class="site-content-wrapper <?php echo esc_attr( of_get_option('ares_theme_background_pattern','crossword') ); ?>"> <div class="page-content row"> <div class="col-md-9 site-content item-page <?php echo esc_attr( of_get_option('sc_blog_layout') ); ?>"> <?php if (have_posts()) : ?> <?php /* Start the Loop */ ?>to
<div id="content" class="site-content-wrapper <?php echo esc_attr( of_get_option('ares_theme_background_pattern','crossword') ); ?>"> <div class="page-content row"> <div class="col-md-12 site-content item-page <?php echo esc_attr( of_get_option('sc_blog_layout') ); ?>"> <?php if (have_posts()) : ?> <?php /* Start the Loop */ ?>Forum: Reviews
In reply to: [Download Monitor] Freaking great pluginHow did you get past the conflicting shortcodes between EDD and this? This made my EDD pages go to the download monitor pages, or vice versa…such that I had to stop using one or the other.
Forum: Fixing WordPress
In reply to: Visual editor has disappearedSame issue here. Cleared the entire browser cache. Firefox 8.0. No visual editor menu for posts. No ability to post media at this point, except through raw HTML on the HTML tab.
Forum: Plugins
In reply to: [Front End Upload] [Plugin: Front End Upload] Just uploads regardlessNP, it will probably be cool when it works! It looks good so far.
I was interested in it, to allow me to have a quicker way of posting a media file, and getting a quick link to it to share, versus having to sign in, go to Media section, upload, etc.
Basically, making my WordPress site as convenient as a Flickr or something for a quick post!
Forum: Themes and Templates
In reply to: No Spaces on SiteYou can change it to this if you are going for vertical spaces:
<p> </p>instead of just the<p>Forum: Themes and Templates
In reply to: div blocking links?Your August has 2 events, and the positioning of the event class, seems to be strange taking a quick look in firebug. I would look into that. The bottom one seems to be sitting on top of the other one. Maybe they are floating on top of each other or something? It is odd.
Forum: Themes and Templates
In reply to: No Spaces on SiteWhoops! That ended up being a space…LOL! I am trying again:
& nbsp ; (but remove spaces between)
Forum: Themes and Templates
In reply to: No Spaces on SiteNot clear to me what you mean by dont have spaces in the site…did they all disappear? Anyway a space in html is:
Try adding that between things…
Forum: Fixing WordPress
In reply to: Existing Google CalendarI could not get any of the Google Calendar or iCAL widgets working with the current Google calendar using WordPress 2.8.4, including this one. I did however finally get this working:
…using Feedburner for the “basic” google calendar feed, activate Buzzboost to drop the RSS into a Text Widget. That way you can also filter out the Event Status: Confirmed stuff, by modifying the Buzzboost script with excerptLength=5, which is the Title and Date only…