sandras21
Forum Replies Created
-
Forum: Plugins
In reply to: [Livemesh SiteOrigin Widgets] Livemesh Testimonial widget misbehavingMeanwhile tried to deactivate some plugins and did not find the issue. Does anybody has suggestions what could be the issue that text field is not writable? It applies for livemesh testimonials and testimonials slider widget too.
Thank you!Forum: Fixing WordPress
In reply to: Signature under posts not displaying fullyHello!
Yes, i tried to deactivate and activate and finally found another snippet from web and tried to replace my code in functions file with that one and it worked. At least for now. New code following:
add_filter('the_content','add_signature'); function add_signature($text){ global $post; if($post->post_type == 'post') $text.= '<div class="signature"> My signature. </div>'; return $text; }- This reply was modified 8 years, 11 months ago by Jose Castaneda. Reason: added backticks for code
Forum: Fixing WordPress
In reply to: Media Upload not working (http error)I have same issue with the site in godaddy – it is new site, no plugins activated, managed to import all content, including images from drupal to wp but cant upload new images to media library. Tried to switch to original wp themes, still same error.
Forum: Plugins
In reply to: [WooCommerce] Internal Server Error while checkoutAfter all those hours testing and investigating got message from hosting company that it was their mistake, something with php version.
Forum: Plugins
In reply to: [WooCommerce] Internal Server Error while checkoutThanks Con! I already checked for template conflict and tried plugins one by one. The thing is we did not update anything nor change anything before this error appeared. After getting an error I updated some plugins which needed update and template but error still keeps coming.
Forum: Plugins
In reply to: [Invoices for WooCommerce] How to change color of the total amount on the pdfHello @gludie, thank you for your suggestions.
I`m not sure if I got you right..deleted class=”amount” (option #2) and in css i set amount to black. Now this total amount which is displayed with that colored background is black but total amount below the line takes color still from the background color i set from settings. So if I set background to white, the total amount and also invoice number will be white too and not visible..I tried to add to css
.number {
color: black! important;
} to change invoice number color..Did`nt help..
I assume for total amount below the line I shall modify that following code but could you advice how?<!-- Total --> <tr class="after-products"> <td colspan="<?php echo $this->colspan['left']; ?>"></td> <td colspan="<?php echo $this->colspan['right_left']; ?>" class="total"><?php _e( 'Total', 'woocommerce-pdf-invoices' ); ?></td> <td colspan="<?php echo $this->colspan['right_right']; ?>" class="grand-total align-right" style="color: <?php echo $this->template_options['bewpi_color_theme']; ?>;"><?php echo $this->get_total(); ?></td> </tr>Thank you in advance!
Forum: Plugins
In reply to: Woocommerce variable product attribute not displayed in email order@ivansuarez I managed to fix my issue, check if on product page variables settings are set correctly. In my case something had happen there with the update probably – variables combinations were missing.
Forum: Themes and Templates
In reply to: [Responsive] Frontpage text in content areasorry that code examples messed up my previous text here. Anyway..i hope you understand what i meant / breaks and strong codes not working and enter gives just a letter “n” to the page.
Forum: Themes and Templates
In reply to: [Lightning Monkey] wordpress 4.6 support – not working?Btw realised also that customizer is not working anymore, is logging me off as @websitecover mention earlier.
Forum: Fixing WordPress
In reply to: Site not accessible after update to wordpress 4.6I contacted host, that did not help. Finally I just got site up when changed home and site URL to same, it`s not a solution in long term.
Forum: Fixing WordPress
In reply to: Site not accessible after update to wordpress 4.6Seems that nobody is helping here..Anyway to whom has not updated wordpress yet – dont do it, it is full of bugs
Forum: Themes and Templates
In reply to: [Lightning Monkey] wordpress 4.6 support – not working?I managed to get site up when changed home url to same then site url. Customizer however not working. DONT DOWNLOAD 4.6 if you have different URL`s and before they fix bugs – no any help so far!
Forum: Fixing WordPress
In reply to: Site not accessible after update to wordpress 4.6meanwhile I also upgraded php to 7.0
contacted hosting – from that side shall be all ok.
downgraded wordpress – did`nt help, got some other errors in result
running back to 4.6 version, got access to wp-admin back but site is down.
cleared caches, deactivated all plugins – no help
cant try another theme as it is impossible to do anything in customizer, after update it just keeps logging me off like session has expired.
any ideas how to fix ?Forum: Themes and Templates
In reply to: [Pinboard] Portfolio posts and thumbnailsHello! Does somebody have an idea, what may be wrong? How to change the size of image there
Forum: Plugins
In reply to: [Invoices for WooCommerce] How to add VAT % to the invoice template?got it solved by myself already. Just added in woocommerce tax name VAT (20%) and it works create.