visioncreativewilson
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Responsive Tabs] tab selection on external link not workingSorry; I’m a little confused. So you are saying instead of this:
<a onclick="jQuery('.services').find('li:eq(0) a').tab('show');" href="javascript:;"><img src="image.jpg" alt="" /></a>
I replace with this:
<a onclick="jQuery('.services').find('li:eq(0) a').tab('show');" href="javascript:;"><img src="image.jpg" alt="" /></a>[/restabs]
Is this right?
Forum: Plugins
In reply to: [Easy Responsive Tabs] tab selection on external link not workingI’ve created a 4 tab with external links, when I click on certain links, it opens different tabs & sometimes not at all (In Chrome) Is it because I placed the links inside of divs? Should I use a table instead?
<a onclick="jQuery('.services').find('li:eq(0) a').tab('show');" href="javascript:;">link1</a> <div class="child_about"><a onclick="jQuery('.services').find('li:eq(1) a').tab('show');" href="javascript:;">link2</a></div> <div class="child_about"><a onclick="jQuery('.services').find('li:eq(2) a').tab('show');" href="javascript:;">link3</a></div> <div class="child_about_last"><a onclick="jQuery('.services').find('li:eq(3) a').tab('show');" href="javascript:;">link4</a>
[restabs alignment="osc-tabs-left" pills="nav-pills" responsive="true" contentcolor="#ffffff" tabcolor="" tabheadcolor="#ffffff" class="services"] [restab title="" active="active"] lorem ipsum [/restab] [restab title=""] lorem ipsum [/restab] [restab title=""] lorem ipsum [/restab]
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Ultimate WP Query Ajax dropdownCool stuff. quick response
Forum: Plugins
In reply to: [Easy Responsive Tabs] images for the tabs? And resize container?The answer is yes.
Forum: Plugins
In reply to: [Easy Modal] Popup modal locationI made an adjustment in the easy-modal.min.css; (I know I should avoid modifying the css, but since I only need to use it in one instance, I figure it should be okay)
Forum: Plugins
In reply to: [Bucket List] sharable?No problem Nicolas,
I was actually looking for something that would allow visitors to:
a) create their own list
b) make that list it’s own HTML page
c) Generate a URL and let them share itAll without having to signup/verify AND not having someone Admin each entry (I know it all screams vulnerability, but if thats what they want, well, thats what they want)
You wouldn’t happen to know of a plugin that can perform such a task?
Cheers,
Wilson
Forum: Fixing WordPress
In reply to: hide a featured image captionSuccess! Thank you very much!
Could you possibly explain that solution? I’m not much of a php programmer, and after some research, I thought I would have to incorporate something like this:
if (!empty($thumbnail_image[0]->post_excerpt))
Thanks again
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Ultimate WP Query Ajax dropdownThanks! I actually would like your help further so I’ve sent an email.
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Ultimate WP Query Ajax dropdownWhat does it mean when I get the following warning:
Warning: Missing argument 5 for uwpqsfprocess::ajax_pagination(), called in /home/albertaw/public_html/wp-content/themes/rachelbaker-bootstrapwp-Twitter-Bootstrap-for-WordPress-9bc2021/functions.php on line 1234 and defined in /home/albertaw/public_html/wp-content/plugins/ultimate-wp-query-search-filter/classes/uwpqsf-process-class.php on line 311
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Ultimate WP Query Ajax dropdownGood point. I’ve ditched the custom process-class.php and I am going to follow the output instructions you have.
Can I insert a different function into it? I think it can but I want to be certain. for example: <?php echo bootstrapwp_posted_on();?>
Thank you for all the help!
Forum: Plugins
In reply to: make a dropdown list from the [summarize-post]I think I am just over complicating things by over thinking them; or I am not communicating things correctly. Either way, I really appreciate the support you’re providing!
All I really want to do is make a drop down where the values are populated by the custom taxonomy and make them active when someone selects them (with no javascript button)
Either way, I will make a donation as thanks for all the help!
Forum: Plugins
In reply to: make a dropdown list from the [summarize-post]I have a bit of a follow-up question:
How would I write that drop down in PHP? And can I make it limited?
I’m trying to pull <?php the_content()?> into a list
right now, I’m trying something along the lines of this:
<select id="<?php echo $this->get_field_id('posttype'); ?>" name="<?php echo $this->get_field_name('posttype'); ?>" class="widefat" style="width:100%;"> <option <?php selected( $instance['posttype'], 'Option 1'); ?> value="Option 1">Option 1</option> <option <?php selected( $instance['posttype'], 'Option 2'); ?> value="Option 2">Option 2</option> <option <?php selected( $instance['posttype'], 'Option 3'); ?> value="Option 3">Option 3</option> </select>
Sorry, I’m brand new to php
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Ultimate WP Query Ajax dropdownI should be a little more detailed:
I am using the default: uwpqsf-process-class.php
function uajax_result($arg, $id,$pagenumber,$getdata){ $query = new WP_Query( $arg ); $html = ''; //print_r($query); // The Loop if ( $query->have_posts() ) { $html .= '<h2e>'.__('', 'UWPQSF' ).'</h2e>'; while ( $query->have_posts() ) { $query->the_post();global $post; $html .= '<article><header style="border-bottom:1px solid #405D18;">'; $html .= '<h2e><a href="'.get_permalink().'" rel="bookmark">'.get_the_title().'</a></h2e>'; $html .= '</header><p class="meta">posted by</p>'; $html .= '<div class="entry-summary">'.get_the_excerpt().'</div></article>'; } $html .= $this->ajax_pagination($pagenumber,$query->max_num_pages, 4, $id,$getdata); } else { $html .= __( 'Nothing Found', 'UWPQSF' ); } /* Restore original Post Data */ wp_reset_postdata(); return $html; }//end result
I am wondering how I can get_taxonomies() right next to the
posted by
Forum: Plugins
In reply to: make a dropdown list from the [summarize-post]Thanks! I ended up using the [summarize] because I suck at PHP, but I’ll try to read up on it.
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Search Form not appearingAll good