kietygory
Forum Replies Created
-
Forum: Reviews
In reply to: [Calculated Fields Form] Easy to use calculator – highly recommendThank you very much for the support, even after a good review, I will look into it.
Forum: Plugins
In reply to: [WP Super Cache] Cache Test – pages do not matchThanks for the support.
I just turned on the debug mode for the plugin and did the test cache again. Got the same message about pages not match/ timestamps.
Thanks in advance for the support. Kiet
Sorry PHP error message is also off in cpanel :(. Thanks for the support though, it did troubleshoot, but it seems like we cant solve this. Will remove the comment and rating.
I looked in wp-content, cant find the log. think its not active. Any other way I can access the log?
Hi George,
I installed it. Put in maintenance details. Worked fine. But then the plugin interface was blanked (the attached screenshot, just imagine it complete white), could not change the maintenance details. Could not deactivate.Picture:
https://www.scandinaviansolution.com/kiet_store/tempo/screenshot_4.pngIt was active and it showed the message. But now i couldnt change it.
Had to deactivate via plugin interface and delete the plugin.
Weird thing, when i went into plugin, it momentarily showed the details and i could change, but like, for split second before it went blank.
Details:
– Nordicsolarenergy.com
– Theme – Hestia
– wordpress 4.8.1I am now using another plugin. But if we figure out the problem, and solve it, then I will remove this comment and rating, replace it with 5 star with support for fix. I can test it on another domain.
BR – Kiet
Forum: Fixing WordPress
In reply to: HTML Code Responsive Columnsthx @sterndata, it worked, u are a time saver, thx!!
Forum: Fixing WordPress
In reply to: Twenty Sixteen Website title in Header@sage, the below codes seems to work. It includes ur original suggestion. Not sure why it didnt work before. Guess im new at WP :(.
.post-thumbnail img {width: 100%;} .site {margin: 0;} .site-content { padding: 0; } .site-inner {max-width: 100% !important;}
Caveat: it works only for computer to certain extent. If zoomed extremely in, it revert back to side borders. My iphone 5 small screen still shows side borders.
Overall, im ok with this solution though. Should we close this topic or is there anything we can do with the caveat?
Forum: Fixing WordPress
In reply to: Twenty Sixteen Website title in HeaderSorry Sage. It worked on firefox but nothing was shown on Chrome or Edge. So I changed the child name to not contain any space and capital letters. Now it seems to work in Chrome. That is, what comes out on firefox comes also out in chrome. Does it work from your end now?
Forum: Fixing WordPress
In reply to: Twenty Sixteen Website title in HeaderOk, have now both your codes in there:
.post-thumbnail { margin: 0 15% 2.625em !important; } .post-thumbnail img { width: 100% !important; } .site-inner { max-width: 100% !important; } header#masthead { background-image: url(https://www.scandinaviansolution.com/wp-content/uploads/2016/09/cropped-solar002-1.jpg); background-size: cover; padding: 0 4.5455%; } .header-image { display: none; }
Forum: Fixing WordPress
In reply to: Twenty Sixteen Website title in HeaderThats beautiful Sage! It did help with header without using WPBeach codes!
So now only got feature image to widen!
Forum: Fixing WordPress
In reply to: Twenty Sixteen Website title in HeaderOk, i have removed WPBeach header code as well. So this is now a completely blank child theme with the suggested above codes. Does not seem to work ??
Forum: Fixing WordPress
In reply to: Twenty Sixteen Website title in HeaderDone, and thx :).
Forum: Fixing WordPress
In reply to: Twenty Sixteen Website title in Header@sage – correct. Header is ok. Feature image is horrible. Yes plz, if we can have full width feature image with a few simple css, i would most appreciate.
Yes correct – screenshot pic different from website now. Its because of the added function. But if we can get full width without this function im all for the suggestion. Thx ??
Forum: Fixing WordPress
In reply to: Twenty Sixteen Website title in HeaderOk, Im 1 step closer and this is as far as i can go, unless we have a better solution?
The below is NOT a true full-width feature image but a compromise. If you insert a large enough image then it will be full width even when you zoom out.
Solution:
Inserted the following code in functions.php. This removed restrictions feature image width. But it did not extend to full width!function twentysixteen_post_thumbnail() { if ( post_password_required() || is_attachment() || ! has_post_thumbnail() ) { return; } if ( is_singular() ) : ?> <div class="post-thumbnail"> <?php the_post_thumbnail( 'full' ); ?> </div><!-- .post-thumbnail --> <?php else : ?> <a class="post-thumbnail" href="<?php the_permalink(); ?>" aria-hidden="true"> <?php the_post_thumbnail( 'full', array( 'alt' => the_title_attribute( 'echo=0' ) ) ); ?> </a> <?php endif; // End is_singular() }
Then I removed the following code from WPBeach. This removed the max width on feature image.
.site-content, .site-footer, .site-header-main { max-width: 1320px; margin: 0 auto; }
Forum: Fixing WordPress
In reply to: Twenty Sixteen Website title in Header@sage, sorry for being unclear and thx for patience.
We desire feature image full width – here is example. The oilplatform picture.
Here is my screenshot:
– The yellow feature image to extend to red marked boxes.
– The pink Header image was achieved by WPBeach code.My style.css is here with your suggestion already implemented. But it does not seem to work :(.
My unqualified guess: If you see full width, maybe it is because your browser is sufficiently zoomed in? Try zoom out.
Actually, I try both yours and heatherland’s above code on this child template with WPBeach and on clean child template. Does not work. It worked once with heatherland’s code but it was with some function.php code I recently deleted and have not been able to reproduce (now I carry out a logbook on everything I code!).
Today’s attempt: Will see if this function.php code works!
Again, thx for all support.