chrislee
Forum Replies Created
-
Forum: Plugins
In reply to: [Enjoy Social Feed plugin for WordPress website] Grid Settings Not ApplyingEddie. I did try. Unfortunately they didn’t stick.
Forum: Plugins
In reply to: [Widgets on Pages] Widgets showing up verticle instead of horizontalFor the others looking, found a way to do it in the forums & one of Todd’s blogs.
http://gingerbreaddesign.co.uk/todd/2011/05/08/wordpress-widgets-on-pages-horizontal-layout-demo/
Forum: Plugins
In reply to: [Widgets on Pages] Widgets showing up verticle instead of horizontalWould love to have this ability too. Is there a way to do?
Forum: Reviews
In reply to: [Widget Settings Importer/Exporter] Parse errorSame here.
Parse error: syntax error, unexpected T_FUNCTION in …/wp-content/plugins/widget-settings-importexport/widget-data.php on line 49
I actually have this same exact problem. The emails that WooCommerce generates does put in breaks.
I’ve tried to track it down but am failing.
The path I’ve been following is:
woocommerce-delivery-notes > templates > print > print-delivery-note.php
line 56 – wcdn_get_order_itemswoocommerce-delivery-notes > woocommerce-delivery-notes.php
line 349 – wcdn_get_order_items -> calling get_order_itemswoocommerce-delivery-notes > classes > class-wcdn-print.php
line 120 – get_order_itemsThen I get lost from there.
Was hoping to find a place where I could just enter a
<br/>or something.Appreciate any help you can give!
Forum: Plugins
In reply to: [Mobile Domain] [Plugin: Mobile Domain] Can you whitelist URLs?We ended up using this plugin. http://wordpress.org/extend/plugins/mobileesp-for-wordpress/ and basically edited the mobileesp_wp.php file to include some if statements toward the top. You don’t include the domain in the URI string.
We still needed the ability to have the user bypass the mobile domain completely so we didn’t highjack that. Instead, for the pages we wanted to whitelist, we cookied them for a short amount of time.
Example of the code we injected after the define statement…
if($_SERVER['REQUEST_URI'] == '/page-uri-after-domain-1/'){ //print page & exit setcookie("mobileesp_wp_full_site", 1, time()+5, "/", $domain); $_COOKIE['mobileesp_wp_full_site'] = 1; } if($_SERVER['REQUEST_URI'] == '/page-uri-after-domain-2/'){ //print page & exit setcookie("mobileesp_wp_full_site", 1, time()+5, "/", $domain); $_COOKIE['mobileesp_wp_full_site'] = 1; }Forum: Fixing WordPress
In reply to: wp-admin/index.php working, wp-admin getting 404Samboll, you rock!!! Been banging my head forever. Was this issue. Thanks!!!