Forum Replies Created
-
AuthorPosts
-
stefanwohlertMember
I managed to get the displaying right in the original language by commenting out this part of call-to-action.php
$instance['wsm-title'] = apply_filters( 'wpml_translate_single_string', $instance['wsm-title'], 'Widgets', 'Web Savvy - CTA Widget - Title' ); $instance['wsm-moretext'] = apply_filters( 'wpml_translate_single_string', $instance['wsm-moretext'], 'Widgets', 'Web Savvy - CTA Widget - More Text' ); $instance['wsm-morelink'] = apply_filters( 'wpml_translate_single_string', $instance['wsm-morelink'], 'Widgets', 'Web Savvy - CTA Widget - Link' ); $instance['wsm-target'] = apply_filters( 'wpml_translate_single_string', $instance['wsm-target'], 'Widgets', 'Web Savvy - CTA Widget - Target' ); $instance['wsm-cta-image-url'] = apply_filters( 'wpml_translate_single_string', $instance['wsm-cta-image-url'], 'Widgets', 'Web Savvy - Image' );
Looks like you can only translate one of the widgets where you use it twice. Would love to see a solution. Was thinking about creating a second cta widget, but I'm not that good with PHP yet.
stefanwohlertMemberMight need a bit more tweaking in the Style.css but this will do most of the work.
stefanwohlertMemberIn functions.php change:
wp_enqueue_style( 'google-font', '//fonts.googleapis.com/css?family=Oswald:400', array(), CHILD_THEME_VERSION );
to
wp_enqueue_style( 'google-fonts', '//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700', array(), CHILD_THEME_VERSION );
In style.css change:
body { background-color: #fff; color: #222; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; font-weight: 300; line-height: 1.625; }
to
html { font-size: 62.5%; /* 10px browser default */ } /* Chrome fix */ body > div { font-size: 20px; font-size: 2.0rem; } body { background-color: #fff; color: #333; font-family: 'Open Sans', sans-serif; font-size: 20px; font-size: 2.0rem; font-weight: 300; line-height: 1.625; margin: 0; }
And everywhere it says font-family Oswald, change it to font-family: 'Open Sans', sans-serif;
stefanwohlertMemberThe other theme is the Jessica theme (https://www.verandasale.com) and haven't changed the footer there. Also doesn't work.
Tried the Sample Theme as well and doesn't show up there. Almost think it's an issue with Synthesis, as another website I host on a Dutch hosting company does show the widgets (edited Sample Theme I also tried on the other websites).Have tried disabling W3TC as well, but the problem remains.
stefanwohlertMemberHello Christoph,
Talking about the widgets:
- WP SEO: Show Address
- WP SEO: Opening HoursNot referring to the WP Dashboard.
stefanwohlertMemberSome feedback:
- The logo isn't showing on the front page
- The logo doesn't look good on other pages (not floating in the middle)
- Server connection is bad. Front Page 1 image is not loading for me.
- Footer should have more padding on top.
- On the services front page widget, add a enter so the buttons align (looks better)
- Can't see any titles on pages.
- Your contact page is too hard to find, this will have a negative impact on the conversions.The look is great, a bit dark for my taste though. Might be better looking by choosing for lighter colours.
August 30, 2016 at 1:06 pm in reply to: Showcase Pro Theme – Front Page Hero Image not showing on front end #192361stefanwohlertMemberLooked through the code but can't find anything. Have you tried disabling all plugins to see if that works?
If you need further help let me know so I can take a closer look into your installation. -
AuthorPosts