JonasK
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Oxygen] Gallery with same width of featured posts in home page?My version for the “full width gallery”:
1) Disable left column
Comment (Php and Hmtl) or erase lines 14 to 20 in
wp-content/themes/oxygen/attachments.php<div class="aside"> <?php get_template_part( 'menu', 'secondary' ); // Loads the menu-secondary.php template. ?> <?php get_sidebar( 'primary' ); // Loads the sidebar-primary.php template. ?> </div>
2) Disable right column
Change line 113 in wp-content/themes/oxygen/functions.php from this:if ( is_page_template( 'page-template-fullwidth.php' ) ) {
to this:
if ( is_page_template( 'page-template-fullwidth.php' ) or is_attachment() ) {
3) Adjust CSS
Add this after “Contact Form 7 (plugin)” and before “Media Queries (mobile browsing)” in wp-content/themes/oxygen/style.css (line 1385)/* Gallery Full Width ----------------------------------------------------- */ .attachment-image .content-wrap { width: 100%; } .attachment-image #content { width: 100%; }
It is working for me, hope to send the link to the website soon…
Forum: Themes and Templates
In reply to: [Oxygen] Gallery with same width of featured posts in home page?Or something like the “full width” page template for the exhibition of the gallery…
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 not sending emails- no confirmation, no errorI’m having the same problem in a client`s website. I run a few wordpress’ websites using CF7 and just one of them seems to have problems.
After installing the SMTP plugin I could send the test mail, but the CF7 still doesn’t work.
I guess it`s some issue with the theme, does anyone here use the Modernize theme from themeforest ( https://themeforest.net/item/modernize-flexibility-of-wordpress/1264247 ) ?