studioactiv8
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Responsive] style.cssoh good.. I looked at all the updates before, and the main css was always at the root of the theme. This is the first time they have moved the main css up into the core/css directory. I am thrilled too.. I always to have faith that smart things are going on. cyber chimps do a great job at updating this theme.
I am glad I could help ??
So many people have helped me along the way!Forum: Themes and Templates
In reply to: [Responsive] style.cssI have used it twice now and it works on my sites.. it does make sense.
I just got caught up thinking about it too much ?? *jDForum: Themes and Templates
In reply to: [Responsive] responsive.1.9.5.2 ~ messes up child themeHere is how I fixed it without messing with the parent theme.. I added /core/css/
/* =Import Styles
-------------------------------------------------------------- */
@import url('../responsive/core/css/style.css');Forum: Themes and Templates
In reply to: [Responsive] style.cssHere is how I fixed it without messing with the parent theme.. I added /core/css/
/* =Import Styles
-------------------------------------------------------------- */
@import url('../responsive/core/css/style.css');Forum: Themes and Templates
In reply to: [Responsive] style.cssI noticed your site is working.. I was using a child theme this way to and with the latest update responsive.1.9.5.2 the site broke. Have you just kept the old version or did you get this figured out? thanks..
Forum: Fixing WordPress
In reply to: Excluding categories by slug from the Category Widgetthis still works..good stuff thanks! Aug 7 2013
I am getting these errors too:
TypeError: ‘undefined’ is not a function (evaluating ‘jQuery(‘body’).on’)
gprofiles.js:2TypeError: ‘undefined’ is not a function (evaluating ‘$(document).on’)
admin-bar-rest.js:23Forum: Plugins
In reply to: [Track Everything] Breaks Gravity Forms That Have Conditional LogicI am figuring it out..
if a ‘bad’ JS script loads before the ‘script for the form’.
Then it won’t load. Look at ~ error logs from page ..
and see if there are JS errors.Forum: Plugins
In reply to: [Track Everything] Breaks Gravity Forms That Have Conditional LogicI am getting this same sort of error.. 2013 using Version 1.6.12
Whenever I add Conditional Logic to my forms they do not show.Forum: Plugins
In reply to: [Ambrosite Next/Previous Post Link Plus] Single TaxonomieI am also using a great Plugin called Custom Content Types ~ Created By Pippin Williamson. He is a genius programmer like you ?? and he offers the ‘Attribute’ option ‘Hierarchical’ and now your Plugin now works perfectly.
Here is the plugin working!! (see bottom of page for next/previous links)
https://geoconinc.com.s157459.gridserver.com/projects/infrastructure-inf01/I am very thankful for your feedback and support.
And just gave you a 5 star review per your request.thanks again jD
I like the plugin too!!
I am having a little trouble getting it to work in a single taxonomie.see bottom of page for links
https://geoconinc.com.s157459.gridserver.com/projects/land-development-ld01/
using project type: Land Developmentpost type: projects
taxonomie
name: projecttype
slug: ptypehere is the code I am using
<div id="port-nav"><div id="poject-lft"><?php next_post_link_plus( array('in_same_tax' => true, 'link' => 'back project' ) ); ?></div> <div id="poject-rt"><?php previous_post_link_plus( array('in_same_tax' => true, 'link' => 'next project' ) ); ?></div>
thanks for anyones suggestions.
jD
I think it goes away when you update the plugin . I am away from my computer there is a way to delete the code that pops up the announcement. I will post it when I get back around.
Forum: Fixing WordPress
In reply to: Single post template for custom taxonomies?@ Robert
this is Great!! thanks!For folks that don’t know all the way.
This is a function that uses your ‘taxonomies’ and lets you make a single-‘taxonomy’.php file. That way you can have different ‘single’ pages. Add this code to your functions.php file.add_filter('single_template', 'single_template_terms'); function single_template_terms($template) { foreach( (array) wp_get_object_terms(get_the_ID(), get_taxonomies(array('public' => true, '_builtin' => false))) as $term ) { if ( file_exists(TEMPLATEPATH . "/single-{$term->slug}.php") ) return TEMPLATEPATH . "/single-{$term->slug}.php"; } return $template; }
Forum: Plugins
In reply to: [Shadowbox JS] [Plugin: Shadowbox JS] Shadowbox iPad problemI have fixed this issue by adding a ‘smidge’ of percentage on the overlay style element in the shadowbox.css file.
#sb-overlay{position:relative;height:103%;width:103%;}
I think this will solve much of the problem.. Big fan of the simple solution.
I have tested this Horizontally and Vertically on the iPad.The iPhone is working Vertically .. I am open to others suggestions on the Horizontal of the iPhone.
Thanks Jeremy..what were they thinking?
I am worried about the NG plugin it was so ‘original wordpress’ ??