tdevine33
Forum Replies Created
-
Forum: Plugins
In reply to: [PDF Image Generator] Please install Ghostscript! WarningI am having the same issue.
I know I have ImageMagick installed because I used it recently on a Rails project, and I even tried reinstalling it both with OSX installer and the Brew… but it’s still giving me the following error.
“Please install “ImageMagick” and “GhostScript” before activate!”
Anyone find a solution for this yet? Thanks!
Forum: Plugins
In reply to: [Plugin: WordPress MU Domain Mapping] Login to mapped site returns ERRORIn the Domain Mapping plugin settings, I currently am using the first option, Server IP Address.
Also, below that in the ‘Domain Options’ – I have 1, 3 and 4 checked:
- 1. Remote Login
- 3. User domain mapping page
- 4. Redirect administration pages to site’s original domain (remote login disabled if this redirect is disabled)
Does anyone know any work around, or possible updates I can make? This has been an ongoing problem for a while now and I really need to get it straightened out. If you have experience with the WordPress MU Domain Mapping plugin, it’d be greatly appreciated!
Thanks again!
Forum: Plugins
In reply to: [Plugin: The Events Calendar] posts_per_page not workingNo, sorry I didn’t specify in the post… only in the title.
I have a loop that is supposed to show the 4 most recent posts from ‘The Events Calendar’ plugin, but posts_per_page in wp_query and query_posts doesn’t seem to be working.
There seemed to be a fix for this at some point, but the thread seemed to die at wp3.1 when the fix stopped working.
Forum: Fixing WordPress
In reply to: Highlight Current Sub-Category in Single Postno more ideas?
I just need to make it so that instead of running for only category ’21’, it does it for all categories.
Forum: Fixing WordPress
In reply to: Highlight Current Sub-Category in Single Postyes, this is based off of a template from elegant themes.
Forum: Fixing WordPress
In reply to: Highlight Current Sub-Category in Single Postanyone have any thoughts?
Forum: Plugins
In reply to: [Plugin: WP-Property] Search Price RangeFound it!
If anyone else has had a similar issue, you have to go into the Properties > Settings, Developer Tab, scroll down to ‘Property Fields’ and there is a drop down for Price that is ‘input’ and can be changed to range (input).
enjoy!
Forum: Fixing WordPress
In reply to: $query_string plus category issuesForum: Fixing WordPress
In reply to: jQuery Library not loading?right = write… sorry its early and I’m still starting on my tea.
Forum: Fixing WordPress
In reply to: jQuery Library not loading?so when you right the jquery code starting with jQuery and use the function($) it works, but not when you start with $ and just have function(). Is this because of a conflicting library perhaps?
Forum: Fixing WordPress
In reply to: jQuery Library not loading?bump?
Forum: Fixing WordPress
In reply to: jQuery Library not loading?sorry… stupid move just made here. There are two sites for sister companies and I posted the wrong one. The ACTUAL site is
https://www.adksolar.com/governmentnon-profit-solar-elecrtic/faq/
Forum: Fixing WordPress
In reply to: Conditional Tags separateing categoriesFound one quick solve…. don’t know if its the best code, so if you have a better solution feel free to post it
<div> <?php if (have_posts() ) : while ( have_posts() ) : the_post(); ?> <?php if (in_category('27') ) { ?> <div> <a href="<?php echo get_post_meta($post->ID, 'link', true); ?>" target="_blank" title="Link to <?php the_title(); ?>"> <img src="<?php echo get_post_meta($post->ID, 'thumbnail', true); ?>" class="thumbnail" alt="Thumbnail of <?php the_title(); ?>" width="120" height="160" /> </a> <h2><a href="<?php echo get_post_meta($post->ID, 'link', true); ?>" rel="bookmark" title="Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> </div> <?php } else { ?> <?php } ?> <?php endwhile; ?> <?php endif; ?> </div> <div> <?php if (have_posts() ) : while ( have_posts() ) : the_post(); ?> <?php if (! in_category('27') ) { ?> <div> <a href="<?php echo get_post_meta($post->ID, 'link', true); ?>" rel="bookmark" title="Link to <?php the_title_attribute(); ?>" target="_blank"> <img src="<?php echo get_post_meta($post->ID, 'thumbnail', true); ?>" alt="Thumbnail for <?php the_title(); ?>" width="85" height="85" /><br /> </a> </div> <?php } else { ?> <?php } ?> <?php endwhile; ?> <?php endif; ?> </div>
Forum: Fixing WordPress
In reply to: Display all Sub CategoriesThis is a left hand sidebar that just lists all categories. Its not actually for sports/board games, its different baby products that are separated into 4 ‘malls’. The beta site is at
https://www.leapfrogwebmarketing.com/clients/EFB_online/
The way that works now is that there are 4 categories that are Baby Boutique, Everyday Baby, Discount Baby, and Organic Baby. Then all the categories that are down the left hand column are actually tags. I’m trying to figure a way to have all of this done with Categories AND when you click on a mall (ie:Organic Baby) it will only show the organic baby categories on the left hand sidebar
Forum: Fixing WordPress
In reply to: Display all Sub Categoriesso I would have to add this code for each sub-category? so if my client wanted to add ‘Lacrosse’ to the list, I would have to add into the core structure and it wouldn’t be added dynamically when she created a new sub-category?