Hi. I am having problems with my BLOG page. The sites posts always only appear as a single column. I can’t get them to appear as the three column wide layout I have when I ‘edit’ the page.
On the edit page my posts appear as three columns, with a heading but no image. When I update / preview or go live, I just get a single column with the image correctly.
]]>On my home page, I would like my second widget (EN COURS : DISSO #38 ? FEUX ?) to appear on the right of the page (and not in the middle).
How to do ?
Thanks for your help.
https://revuedissonances.com/
Hello
after server change and Php upgrade I get this error:
Warning: Use of undefined constant REQUEST_URI – assumed ‘REQUEST_URI’ (this will throw an Error in a future version of PHP) in /web/htdocs/www.mydomain.com/home/wp-content/themes/harmonic-wpcom-child-01/functions.php on line 73
Any suggestion for fix it?
Thanks
I’m using the Harmonic theme and I would like each post to display the author, including a link to the author page. Is it possible?
]]>I have 3 minor issues with my Harmony themed website.
1. on mobile (i’m using an iphone7), the feature image on the home page does not adjust correctly (it looks perfect on a pc).
2. the menu item “Design” is missing from the drop down menu on the mobile version (again, iphone7), but only from the home page. if i go to the drop down from any other page it is there.
3. There doesn’t seem to be a way to edit the product pages like all the rest. By default there is a feature image and date which I would like to get rid of.
Any help would be great!
Thanks!
]]>Hi,
i have a problem with cover images when i create a page protected by password.
I have a page where i put all my portofolio’s galleries.
Is possible to view the gallery’s cover image before insert password?
Thank you
]]>I’m unsure why this happens, but I usually post by putting my desired image within the body of the post, with a link to the full-size image when you click that image. But I also use the same image as a featured image so I get a full-sized banner style image across the top. But that featured image is pulled into the Posts page so that you see both images, which are identical, on my post page. Is there any way to suppress the Featured Image on the Posts page?
Thanks,
Damon
Hi there, Sorry about this but I’ve asked EDD (Easy Digital downloads) about this & was told to ask you!
EDD shortcode [downloads category="112"]
gives the correct info but I can’t figure out how to change the CSS – the font is “budmojiggler” , red, 84px and looks horrible!
I just can’t find this css anywhere (I’m sure it wasn’t me that did this) to change it – any ideas please.
(I’m not much of a coder so answers in simple lanquage please).
Thanks
F12 shows this:
DIV DIV DIV.edd_download_inner H3.edd_download_title A {
font-size: 84px !important;
color: #f71313 !important;
font-family: 'budmojiggler' !important;
}
]]>
Hey friends! Hopefully a simple issue. Just need to change my tag template so that pages that are showing articles with a certain tag show just excerpts instead of the full articles.
]]>Hi there, Back again!
I still haven’t got anywhere with this.
All I want is to get the post full width (with no sidebars or sidebar place holders) and to get rid of the border around each of the sections – nothing I do works! (I really don’t want to have change theme just to get this to work).
The post is marked private & the code is on it’s own template file.
The tutorial I’m following is here (at about 4 mins).
Here’s the code:
<?php
/**
* Template Name: zzAnotherTry
* Template Post Type: post
**/
add_action('full_width_content', 'do_full_width_content' );
add_filter('body_class', 'add_full_width_body_class' );
function add_full_width_body_class($classes) {
$classes[] = 'full-width-template';
return $classes;
}
function do_full_width_content(){
?>
<main>
<?php // check if the flexible content field has rows of data ?>
<?php if( have_rows('flexible_content') ): ?>
<?php // loop through the rows of data ?>
<?php while ( have_rows('flexible_content') ) : the_row(); ?>
<?php // check current row layout ?>
<?php if( get_row_layout() == 'hero' ): ?>
<section>
<div class="hero" style="background-image:url(<?php the_sub_field('hero_image') ?>)">
<div class="cta_container">
<div class="cta_content">
<div class="cta_content wrap">
<h2><?php the_sub_field('hero_text'); ?></h2>
<?php $selected = get_sub_field('display_cta_button'); ?>
<?php if( in_array( true , [$selected]) ) { ?>
<a class="button" href="<?php the_sub_field('hero_cta_button_url') ?>"><?php the_sub_field('hero_button_text'); ?></a>
<?php } else { ?>
<!--no content--> <?php } ?>
</div>
</div>
</div>
</div>
</section>
<?php endif; ?>
<?php // check current row layout ?>
<?php if( get_row_layout() == 'text-image' ): ?>
<section>
<div class="text-image">
<div class="text-left <?php the_sub_field('css_class')?>"><?php the_sub_field('left_text'); ?></div>
<div class="image-right"><img src="<?php the_sub_field('right_image') ?>"/></div>
</div>
</section>
<?php endif; ?>
<?php // check current row layout ?>
<?php if( get_row_layout() == 'image-text' ): ?>
<section>
<div class="image-text">
<div class="image-left"><img src="<?php the_sub_field('left_image') ?>"/></div>
<div class="text-right <?php the_sub_field('css_class')?>"><?php the_sub_field('right_text'); ?></div>
</div>
</section>
<?php endif; ?>
<?php endwhile; ?>
<?php else : ?>
<?php // no layouts found ?>
<?php endif; ?>
</main>
<?php
}
get_header();
do_action('full_width_content');
get_footer();
Added to Style.CSS:
.full_width_template .site_inner{
max-width:100%;
padding: 0;
}
/* Template for arty posts */
/* Section 1 -- Hero Section */
.hero {
background-size: cover;
position: relative;
background-position: center;
}
.cta_container {
text-align: center;
vertical-align: middle;
background-color: rgba(0, 0, 0, 0.52);
background: rgba(0, 0, 0, 0.52);
color:rgba(0, 0, 0, 0.52);
}
.cta_content {
padding: 100px 10px;
color: white;
}
.widget-area {
display: none;
}
/* Section 2 & 3 -- Image Text -- Text Image*/
.image-text,
.text-image {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.image-left,
.text-right,
.image-right,
.text-left {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
width: 50%;
}
.text-right,
.text-left {
padding: 0 80px;
vertical-align: middle;
}
.dark {
background: #000;
color: white;
}
]]>
Hi everyone!
Customizing Harmonic theme it’s very easy to change background color, but unfortunately there are no further options to change text colors too.
Can you help me, where can I find title and text colors in the css editor to create a global settings to text colors on the whole site?
There are some elements I can set up manually on each page or post, but these settings, among otheres, don’t effect the page titles…
And creating a dark backround design, it also an inconvinience to set text color to white manually, because it will be “invisible” in the editor. So it would be much easier if I could set up white text colors globally.
Thank you
]]>Hi there,
I’ve decided to bite the bullet & learn PHP! To do this I’m following a set of tutorials to create new page useing ACF and I’m getting a blank screen (code below)!
Firstly: In the tutorial there is a line:
add_theme_support( 'genesis-structural-wraps', array( 'header', 'footer-widgets', 'footer', 'nav', 'subnav', ) );
I haven’t got clue what this is or how to point it at Harmonic – Help please!
Secondly: When I try to look at the page I get a blank screen, F12 also shows no style sheets – again, help please!!
Many thanks
Code (in it’s own file):
<?php
/**
* Template Name: HomePageNewPaul1
*/
add_action('full_width_content','do_full_width_content');
add_filter('body_class', 'add_full_width_body_class' );
function add_full_width_body_class($classes){
$classes[] = 'full-width-template';
return $classes;
}
function do_full_width_content() {
?>
<main>
<?php
// check if the flexible content field has rows of data
if( have_rows('flexible_content') ):
// loop through the rows of data
while ( have_rows('flexible_content') ) : the_row();
// check current row layout
if( get_row_layout() == 'hero' ):?>
<section>
<div class='hero' style="background-image:url(<?php the_sub_field('flexible_image')?>)"></div>
</section>
endif;
endwhile;
else:
//do something
endif;
?>
</main>
<?php
get_header();
do_action('full_width_content');
get_footer();
Added to style.css:
#full_width_template .site_inner{
max-width:100%;
padding: 0;
}
/* Section 1 -- Hero Section */
.hero {
background-size: cover;
background-position: center;
}
.cta_container {
text-align: center;
vertical-align: middle;
background-color: rgba(0, 0, 0, 0.52);
background: rgba(0, 0, 0, 0.52);
color:rgba(0, 0, 0, 0.52);
}
.cta_content {
padding: 100px 10px;
color: white;
}
]]>
Hi there,
Two questions:
1>Is there a way to remove/hide the “Edit” column on the left of the posts? – this will centre the images.
2>How do I increase the size of the images/galleries on the posts?
Many thanks
I’m sure someone will have already asked these Is there a way of
]]>Hi!
I would like to know how to reduce the indentation of the list in the sidebar.
You can see an image here.
https://www.dropbox.com/s/5176hh82jo9jux2/Screen%20Shot%202017-10-29%20at%2012.19.19.png?dl=0
I’m creating the list with a plugin called Collapsible Archives, but I really don’t know if the size of the indentation is something I can configure in the styles of the blog in general, or I have to configure in the plugging particularly.
Any help is welcomed.
]]>Hi,
I am actually creating a blog using XAMMP and using harmonic theme. When constructing my blog I noticed that my Header Image didn’t appear in every page except the Blog page. How do I manage to get the Header Image appear in every single page. And also I saw that the Navigation Menu was fixed. I liked this feature but the Navigation Menu is fixed from top of the page and hides my Header contents. So I want the Navigation Bar to appear under the Header and if the page is scrolled the Navigation Bar is fixed. Sort of like this (https://stackoverflow.com/questions/21506208/fixed-navbar-under-non-fixed-header) If needed I can provide my CSS Stylesheet
Hi.
When jetpack is on, title disappears at frontpage.
When jetpack is off, title display at frontpage.
Please tell me what can i do for that.
Thank you.
Title says it all… I can set and see my portfolio project featured image, but it does not display either in the preview or the post in my blog. Known bug, or is there something I can check?
Thanks in advance!
]]>Hello everyone,
I tried many ways to hide page titles and underlines, but somehow I couldn’t succeed .
Among others I installed a plugin which supposed to hide titles and I also tried to modify stlye.css, entering the following rows, but none of these options worked.
.entry-header {
display: none;
}
The only thing I can imagine that maybe I don’t put this code to the right place. Now I tried to insert to the very end of the css file.
Do you have any suggestions?
Thank you!
]]>I’m not a coder, and I’m just setting up the blog using Harmonic with the static front page. The News Section on that page seems to post the latest posts automatically without regard to “sticky” posts or anything. Is there a way to keep selected posts on the front page?
]]>Hello everyone,
I realized that social media menu links are opening in the same browser window, navigating the users away from my website, which is quite an unfortunate situation.
Could you help me, where I can modify this basic setting to make these links open in a new tab? I guess, there’s no such option in the menus, but I hope there’s a solution to insert a (‘target’, ‘_blank’) command somewhere into the .php files.
Has anyone any idea in which .php file could I modify this setup?
Thank you!
]]>I have installed and activated the Harmonic theme, but I prefer a dark look and wanted to change the color scheme. I’m pretty sure when I was on a wordpress.com blog running Harmonic that this worked correctly. But on my selfhosted install the color picker under the theme customization only has a single selection button for the background color, and if I choose black, none of my text is visible since the default text color is black. I’ve already deactivated, deleted and reinstalled/activated Harmonic again, but the issue remains. Is this a known bug?
]]>Hi I have the same Problem as in https://www.ads-software.com/support/topic/replacing-genericons-with-fontawesome-icons/ described.
Did all the steps and still the font-family is “genericons ”
Do you have any idea how i can change it ? I think i trieds close to everythink.
Thank you
Hi,
I am keen to present viewers of my site with a different home page on mobile than on a desktop browser. My homepage is text heavy and works well as a welcome page on desktop but not mobile.
The two options I’ve thought of is trying to create a landing page (a single image would do) that appears when first visiting the site on mobile or somehow inserting an image on the homepage that only appears on mobile.
Desktop has a nice featured image:
https://drive.google.com/open?id=0B-AMLhuhiocCZGpRZU5RYlFUT1U
mobile however is bland as a simple text page:
https://drive.google.com/open?id=0B-AMLhuhiocCS1FBRXdqQzNSOVk
I removed the featured image feature for mobile as it didnt fill the page neatly, and am now trying to think of a solution to visually enhance the mobile site.
Any suggestions / advise would be amazing,
Thank you!!
]]>Hello everyone,
I am just starting to create my page and experienced two problems with the Harmonic-Theme:
1) When adding Custom Links to a new Menu and connecting it to the Social Menu Location, the icons appear next to my site title for a few seconds in the preview. Shortly after they vanish and are not visible and clickable anymore. I followed these steps but could not find my mistake:
https://en.support.wordpress.com/menus/social-links-menu/
2) Something similar is happening for my Social Icon Widgets. In contrast to my problem with the Social Menu the Widgets are appearing on my page. Unfortunately they are not visible when visiting my page via desktop. Even though they seem to be visible with my smartphone.
OS: macOS Sierra
Browser: Safari
My Page: https://timofrankblog.wordpress.com
Thanks for your help in advance.
Solution: Just visited my page via Chrome and everything works fine! Is there any possibility to make it work via Safari?
]]>Hi everybody, is there a way to change the blue color of the post date info and also from hover effect on the “read more” button that appears when you set a featured image?
As it is, it changes from clear/transparent (only with the white outline) to blue and I wanted to choose other color. Can anyone help me out with this?
Reading some css examples throughout this forum helped me in changing the blue color from the social icons menu and the main menu (I pasted them bellow), but I can’t find the css identifiers for the “read more” button and the date info.
All help will be appreciated!
.social-links ul li a:hover:before {
color: #ffffff;
}
.main-navigation li a:hover {
color: #ffffff !important;
}
.main-navigation li.current_page_item a:hover {
color: #ffffff !important;
}
I really love this theme, but somehow GTmatrix gives my blog a bad pagespeed score because of the unscaled images.
I have found the problem in the style.css under #preload.
But when I disable the height and width from 1px or change it to 100%, the frontpage doesn’t work as it supposed to.
Does someone have a solution for this problem.
Hi,
I have used the featured photo function on the theme Harmonic to good effect on a desktop browser and iPad browser.
On a phone however the featured photo makes the design look messy, it duplicates the pages title and appears small. It would be ideal if I could remove the featured photo just for mobile, or at least change the featured image to one that fits the portrait orientation of a phone better.
Please see visual links below,
Thank you!
Desktop:
https://drive.google.com/open?id=0B-AMLhuhiocCZGpRZU5RYlFUT1U
Mobile:
https://drive.google.com/open?id=0B-AMLhuhiocCVmM4UERYVFpzLTA
I’m using your template on WordPress.com. I can’t change anything in title page because it no longer exists in theme options, customiser. Therefore, a random picture under the theme appears and I cannot use your main feature.
]]>Hey Harmonic Forum!
Hopefully a quick question ??
I want to put a link to my Tinyletter Newsletter on the Social Icon menu on the top (next to the title of my page). Not surprisingly, there’s not a Tinyletter icon premade for the theme! Is there a way to A) insert a custom logo (instead of the default one it’s showing) and B) could the icon be edited to match the aesthetic of the other social media icons?
Here’s the link to my page: https://www.gamingbroadly.com and here’s a link to the icon I’d like to see in my social icons menu https://images.g2crowd.com/uploads/product/image/social_landscape/social_landscape_1491234550/tinyletter.png
]]>website: danlamm.com
Ive got some help on here with my headers and footers but there are a few things that still are not quite right. I have been trying to figure it out myself but haven’t been able to get it working. first the header strip is fixed on all pages except the blog page. I understand that the blog page is kinda its own animal and doesn’t follow all the rules the other pages do. i tried tweaking your [david, the harmonic hero’s] code to apply to the blog page but i must not be doing it right…
.blog .page #masthead {
position: fixed;
}
The next issue is that the footer behaves differently on all the pages. I want the bar to be fixed to the bottom of the window at all times for all pages. Also, I want to get rid of the text “theme: harmonic by…”. I was able to get rid of it on the main page with the following code:
#colophon {
position: fixed;
}
#colophon a{
visibility: hidden;
}
#footer-nav-wrapper .site-info {
visibility: hidden;
}
#footer-nav-wrapper .site-info a {
visibility: hidden;
}
but it still appears on the other pages. Also, in this bit of code I attempt to fix the bar to the bottom, albeit unsuccessfully. any suggestions?
]]>