Forum Replies Created
-
AuthorPosts
-
baneff
ParticipantJanuary 30, 2017 at 11:45 pm in reply to: After the update to 4.6, there is no possibility to change the color #108387baneff
Participant@Sakin 4.6.2 works fine, thanks.
January 30, 2017 at 10:31 pm in reply to: After the update to 4.6, there is no possibility to change the color #108379baneff
Participant@Sakin
My site: eksi.net
4.6.1 – same problem
Now the menu color – gray, and should be – blue.
It looks like the problem is child theme settings.January 30, 2017 at 8:01 pm in reply to: After the update to 4.6, there is no possibility to change the color #108351baneff
ParticipantHello,
I confirm, I have the exactly same problem. Only gray color scheme is available after the upgrade to version 4.6 .January 10, 2017 at 7:36 pm in reply to: Hatom error (updated and author) and schema.org error (person homelocation) #106843baneff
Participant@maviedecoeliaque: In addition, you can change the phrase “Was last modified” to “La dernière modification” and the word “by” to “par” in the above code for example. Then a message about last modified date and author on the bottom of each page of your site will be displayed in your language.
You can also change the style of the message, such as shown below for example.
Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
.hatom-extra { margin-top: 10px; font-size: 10px; text-align: center; }
January 10, 2017 at 6:59 pm in reply to: Hatom error (updated and author) and schema.org error (person homelocation) #106841baneff
Participant@maviedecoeliaque: It is not your fault. Rather, it is an incomplete service of Free version of the theme. Perhaps this was corrected in Pro version of the theme, but I’m not sure.
January 10, 2017 at 4:58 am in reply to: Hatom error (updated and author) and schema.org error (person homelocation) #106806baneff
Participant@maviedecoeliaque: Below there is easiest way for non-programmers, I think.
1. Install the plugin My Custom Functions
2. Add to the plugin the following code:// Fix for Google hAtom Missing author and updated function hatom_mod_post_content ($content) { if ( in_the_loop() && !is_page() ) { $content = '<span class="entry-content">'.$content.'</span>'; } return $content; } add_filter( 'the_content', 'hatom_mod_post_content'); function add_mod_hatom_data($content) { if ( is_single() || is_page()) { $content .= '<div class="hatom-extra">Was last modified <span class="updated"> '.get_the_modified_time('j F Y').'</span> by <span class="author vcard"><span class="fn">'.get_the_author().'</span></span></div>'; } return $content; } add_filter('the_content', 'add_mod_hatom_data');
3. Wait a few weeks until Google will index your site again.
baneff
Participant@czoczo: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
@media screen and (min-width: 1200px) { #page { width: 1200px; } #primary { width: 70%; } #secondary { width: 30%; } #main { padding: 10px; } .widget { margin-bottom: 7px; margin-left: 10px; } }
January 6, 2017 at 6:17 pm in reply to: Hatom error (updated and author) and schema.org error (person homelocation) #106587baneff
Participantbaneff
ParticipantHello,
add next code to custom CSS of the theme?
#slider { display:none; }
baneff
ParticipantHello, Mathilde.
> I have just done the last update of my theme. I noticed that arrows (of slider?) appeared between my header and my content, how to get rid of it?
Add next code to custom CSS of the theme?
#nav-slider .nav-previous, #nav-slider .nav-next { display:none; }
baneff
ParticipantI have a similar problem after upgrading Catch Box to version 4.3.4.
Warning: array_filter() expects parameter 1 to be array, null given in /home/eksinet/public_html/wordpress/wp-content/themes/catch-box/functions.php on line 836
http://eksi.net
Help me please.
Thank you.baneff
ParticipantIt was my fault, everything works now, I’m sorry.
Thanks.baneff
ParticipantYou can add the following css in “Appearance => Theme Options => Custom CSS” box:
.breadcrumbs { display: none; }
-
AuthorPosts