Jon Bishop
Forum Replies Created
-
Forum: Plugins
In reply to: [Socialize] [Plugin: Socialize] Without counterI’m working on adding more buttons so people can completely customize their display. This involved a complete rewrite with tons of new features but it also involves time, which I don’t have a lot of.
I’m almost done but not quite finished so don’t get your hopes up too much. It is in the plugins future tho.
Forum: Themes and Templates
In reply to: Adding Physical Space Between PluginsWere you able to get this fixed?
I changed the way the form shortcode works so you can insert multiple forms. Let me know what you think.
Forum: Themes and Templates
In reply to: Happy Print Shop – Does this Theme work on WP?It is not “compatible” in the sense that it is not already put together as a WordPress theme. Using Kill-Switch413’s link will get you half way there but you wont be able to take advantage of navigation menus, sidebar widgets and comments.
There are other tutorials out there if you wanted to take a stab at it yourself but converting an HTML theme into a WordPress theme can be a daunting task to those not familiar with CSS.
Maybe try using one of these links to find a free theme that is already WordPress ready.
The goal is to make it so you can select from a dropdown of contact forms within the WordPress WYSIWYG. Setting up new forms in HubSpot would in turn makes those forms available in WordPress.
This might be awhile off still so we will consider alternative methods in the meantime.
The form shortcode is still in development. I am currently working on formatting the existing form so it displays properly within different themes. Next I will develop an easier way to insert multiple forms into your site as needed. For now you can only insert the one form using the shortcode.
We hope to have an easier means of inserting forms from HubSpot into your WordPress site in the future.
Forum: Plugins
In reply to: [Socialize] [Plugin: Socialize] Don't Include CSSI’m working on a new release right now. I’ll add the ability to override css.
Forum: Plugins
In reply to: [Socialize] Change location of Socialize PluginIt is currently not possible.
I am thinking of reworking the code a bit which might bring about the opportunity to integrate this functionality. It will most likely be a function you paste into your template to override the default settings. (ex: like <?php display_socialize(); ?>)
I am currently busy with other plugin work but coming out with a new version of this plugin is high on my list of priorities.
If you get a chance could you share the error codes you received. I understand if this is not possible.
Thanks, I will look into this a bit further.
Forum: Plugins
In reply to: [WP About Author] [Plugin: WP About Author] A couple of suggestionsThanks I’ll get this working for the next version
Forum: Plugins
In reply to: [WP About Author] [Plugin: WP About Author] A couple of suggestionsThanks for the suggestions.
To solve problems 1,2 and 3 I was thinking of adding a template to the settings panel so you can pick and choose what data to display and where to put it. Is this overkill for what should be an easy to use plugin?
Forum: Plugins
In reply to: [Ad-minister] [Plugin: Ad-minister] Problem with wordpress 3.0.1Swap out
$_POST['post_title'] = 'Ad-minister Data Holder ' . $nbr;
$_POST['post_type'] = 'administer';
$_POST['content'] = 'This post holds your Ad-minister data';
$id = wp_write_post();
update_option('administer_post_id', $id);
with
$adminster_post = array();
$adminster_post['post_title'] = 'Ad-minister Data Holder ' . $nbr;
$adminster_post['post_type'] = 'administer';
$adminster_post['content'] = 'This post holds your Ad-minister data';
$id = wp_insert_post( $adminster_post,true );
update_option('administer_post_id', $id);
in ad-minister.phpSource: http://labs.dagensskiva.com/forum/topic/ad-minister-wp_error
Forum: Fixing WordPress
In reply to: Parked domain mapped to a specific page – possible?I have the same problem.
I’ve got a site at mysite.com and I want myawesomepage.com to display what is located at mysite.com/awesomepagecontent.
I currently have it set up so if you go to myawesomepage.com it redirects you to myawesomepage.com/awesomepagecontent and the content at mysite.com/awesomepagecontent is displayed … close but no cigar.
Forum: Plugins
In reply to: re-arranging menu etcThis is a bit of code that I use to do what you just said.
<div class="menu"> <ul> <?PHP global $wpdb; $buff = $wpdb->get_results("SELECT * FROM wp_posts WHERE post_parent='0' AND post_type='page' AND post_status = 'publish' ORDER BY menu_order ASC"); foreach ($buff as $line) { if(!get_post_meta($line->ID, 'nav_hide', true)){ $nav_name = get_post_meta($line->ID, 'nav_name', true); if ( !$nav_name ) $nav_name = $line->post_title; else $nav_name = $nav_name; ?> <li><a class="menu1one" href="<?=get_permalink($line->ID); ?>"><?=$nav_name ?></a></li> <?PHP } } ?> </ul> </div>So basically how this works is it uses the sort order to order the links in the navigation bar and you can use the custom value nav_hide set to true in a custom filed of pages you want hidden from the navigation bar.
I also added a custom field called nav_name that allows the user to change the name of the link without editing the name of the page.