pelicanpaul
Forum Replies Created
-
Forum: Plugins
In reply to: [Quotes for WooCommerce] Email Template CustomizationsThe land of emails…
Forum: Plugins
In reply to: [Quotes for WooCommerce] Email Template CustomizationsFigured it out…
<?php $order_data = $order->get_data(); // The Order data $order_billing_company = $order_data['billing']['company']; $order_billing_state = $order_data['billing']['state']; $order_billing_country = $order_data['billing']['country']; $order_billing_email = $order_data['billing']['email']; $order_billing_phone = $order_data['billing']['phone']; $order_customer_note = $order_data['customer_note']; echo '<p style="margin: 0 0 25px; line-height: 1.65;">'; echo '<strong>Email:</strong> ' . $order_billing_email . '<br />'; echo '<strong>Phone:</strong> ' . $order_billing_phone . '<br />'; echo '<strong>Country:</strong> ' . $order_billing_country . '<br />'; echo '<strong>State:</strong> ' . $order_billing_state . '<br />'; echo '<strong>Company:</strong> ' . $order_billing_company . '<br />'; echo '<strong>Notes:</strong> ' . $order_customer_note . '<br />'; echo '</p>'; ?>
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Issue with Sortingthanks. it was actually a conflict with another plugin. took a bit to debug. thanks! https://www.ads-software.com/plugins/simple-custom-post-order/
I unchecked the Posts for sorting and search sorts correctly now. Fortunately that plugin is not used for Posts
SOLVED!
I am just experimenting with possibilities. Seems odd that you cannot have a shortcode that say would write something in the footer. Of course you can do with with JavaScript on the fly but what if you wanted to have a background video for the entire page. That div would be best as fixed position separate from being inside the div where you write the_content();
Forum: Plugins
In reply to: [Max Mega Menu] Custom HTML Widget – Use shortcodesFigured it out. I had to add
add_filter( ‘widget_text’, ‘shortcode_unautop’);
add_filter( ‘widget_text’, ‘do_shortcode’);to my functions file
Forum: Plugins
In reply to: [Category Discount Woocommerce] Does not apply discountUpdate…
Figured it out. Since the data was imported I was under the assumption that the parent categories where checked and applied to the products. Only the sub categories, the last child in the category.
I think I well need to go PRO. Thanks!
Forum: Plugins
In reply to: [Category Discount Woocommerce] Does not apply discountHi,
1. Yes. When applied as a sale price it shows correctly.
2. Correct
3. There are no customizations.
Hi,
The plugin has always worked for me and on this project works on my local environment. The staging and production environments are on AWS and I do not think that the plugin ash ever worked there. Here is the entire error message – 2 times. thanks!
[Wed Jun 13 23:07:27.925271 2018] [:error] [pid 938] [client 172.31.39.185:55620] PHP Warning: include_once(/var/www/html/wp-content/plugins/simple-history/loggers/class-sh-privacy-logger.php): failed to open stream: No such file or directory in /var/www/html/wp-content/plugins/simple-history/inc/SimpleHistory.php on line 1055, referer: https://staging.mysite.com/wp-admin/options-general.php?page=salesforce-wordpress-to-lead&tab=form&id=1
[Wed Jun 13 23:07:27.925303 2018] [:error] [pid 938] [client 172.31.39.185:55620] PHP Warning: include_once(): Failed opening ‘/var/www/html/wp-content/plugins/simple-history/loggers/class-sh-privacy-logger.php’ for inclusion (include_path=’.:/usr/share/php:/usr/share/pear’) in /var/www/html/wp-content/plugins/simple-history/inc/SimpleHistory.php on line 1055, referer: https://staging.mysite.com/wp-admin/options-general.php?page=salesforce-wordpress-to-lead&tab=form&id=1
Line 1055
include_once $one_logger_file;Forum: Plugins
In reply to: [Invisible reCaptcha for WordPress] Recaptcha not working only Contact form 7You have to enable it for Contact Form 7 forms.
GO TO :
Settings > Forms > Enable Protection for Contact Form 7Forum: Plugins
In reply to: [Contact Form 7] contact form 7 pipes not workingIn other words. Is there a way to to have a select dropdown have different values for the value and the text without it being hidden?
thanks,
Forum: Plugins
In reply to: [Contact Form 7] contact form 7 pipes not workingstrange. what I thought it would do is
<select class="wpcf7-form-control wpcf7-select" aria-invalid="false" name="your-recipient-1"> <option value="[email protected]">Information</option> <option value="[email protected]">Press</option> <option value="[email protected]">Webmistress</option> </select>
isn’t that the idea of the pipes?