Nick Hamze
Forum Replies Created
-
Forum: Plugins
In reply to: [Shopify Connect for WooCommerce] Feature Request – Product ImportHi Dave,
The v1 was basically just to see if anyone would use this. If enough people find it useful I have a pretty ambitious v2 in mind that would automate the creation of the WooCommerce product and the addition of the information from Shopify. Keep an eye on secretpizza.party for more information.
P.S. Would you mind sharing what site you are using this on? I love seeing real life examples of our plugin in action.
Cheers,
Nick
I found it tough to create an entire store with just this plugin so I created Shopify Connect for WooCommerce that allows you to use all the awesomeness that is Shopify along with the structure and such of WooCommerce:
https://www.ads-software.com/plugins/connect-shopify-and-woocommerce/Forum: Themes and Templates
In reply to: [Oulipo] [Theme: Oulipo] Where to edit Comment FormTry placing this filter in your functions.php
add_filter( 'comment_form_defaults', 'oulipo_comment_form_defaults' ); function oulipo_comment_form_defaults( $defaults ) { $defaults['title_reply'] = __( 'Leave a Comment' ); $defaults['title_reply_to'] = __( 'Leave a Comment to %s' ); $defaults['comment_notes_after'] = __( '' ); return $defaults; }
Forum: Themes and Templates
In reply to: Possible to have 2 themes on one site?I usually setup a subdomain like test.domain.com with a fresh WordPress install and then import all the content from the main site. Then I mess around with it on the test WP install and once I have it the way I want it upload the new theme to the main site.
Forum: Themes and Templates
In reply to: unclickable submit comment buttonGreat, glad to hear everything worked out alright.
Forum: Themes and Templates
In reply to: Add current class to navigation home linkI haven’t tried out the code myself but I did find this blog post where the author was trying to do something very similar to what you want to do. You can check it out here.
Forum: Themes and Templates
In reply to: unclickable submit comment buttonIt looks like the original theme had at 950px container that was made into a 1200px container and this through off the entire grid. What you need to do is get rid of the padding left on your sidebar and then open up your screen.css and change the .span-16 element on line 113 to a width of 880px. That should do the trick. Let me know if that doesn’t work.
Forum: Themes and Templates
In reply to: unclickable submit comment buttonWhen I look at the site I see that your sidebar is actually overlapping 233px of your content. See this screenshot. It looks you modified the theme and added 233px of left margin, that is what is causing the problem.
Forum: Themes and Templates
In reply to: How to remove "posted in"I don’t have a copy of this particular theme but I suspect that would would need to look in index.php, archive.php, and single.php to find the string of code you need to remove. From looking at the demo it seems that it should be located inside a div called title_holder and should be surrounded by an <h3>.
If you not comportable editing the code you can add this line of css to your theme.
div.title_holder h3 {display:none;} and that should hide that particular line of text.
Forum: Themes and Templates
In reply to: [Theme TwentyEleven] Phantom footerThis code is being generated in your header, which is causing the phantom footer. If you haven’t edited your header.php this code must be generated by a plugin. Disable all plugins and see if it goes away. I’m not sure which plugin you have installed but it is possible for the footer to show up even if the Google Friends Connect Widget is not active, it all depends on the plugin.
<!-- Render the gadget into a div. --> <script type="text/javascript"> var skin = {}; skin['BORDER_COLOR'] = '#cccccc'; skin['ENDCAP_BG_COLOR'] = '#e0ecff'; skin['ENDCAP_TEXT_COLOR'] = '#333333'; skin['ENDCAP_LINK_COLOR'] = '#0000cc'; skin['ALTERNATE_BG_COLOR'] = '#ffffff'; skin['CONTENT_BG_COLOR'] = '#ffffff'; skin['CONTENT_LINK_COLOR'] = '#0000cc'; skin['CONTENT_TEXT_COLOR'] = '#333333'; skin['CONTENT_SECONDARY_LINK_COLOR'] = '#7777cc'; skin['CONTENT_SECONDARY_TEXT_COLOR'] = '#666666'; skin['CONTENT_HEADLINE_COLOR'] = '#333333'; skin['POSITION'] = 'bottom'; skin['DEFAULT_COMMENT_TEXT'] = ''; skin['HEADER_TEXT'] = ''; google.friendconnect.container.setParentUrl('/blog/' /* location of rpc_relay.html and canvas.html */); google.friendconnect.container.renderSocialBar( { id: 'div-1234681839482', site: 'Yumarama', 'view-params':{"scope":"PAGE","allowAnonymousPost":"false","features":"comment","showWall":"false","docId":""} }, skin); </script>
Forum: Themes and Templates
In reply to: RSS images in SnapshotHave you seen this plugin, WP RSS Images? I haven’t used it personally but it seems to do want you want.