Carolina Nymark
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Show the corporate webpage on my websiteIt’s not possible to answer your question without more details.
Do you want to mirror their page, or do you want to host a version of it on your own site?
Does your company not offer any support?Forum: Fixing WordPress
In reply to: Sudden Menu Issues – Lost 'Home' tab and AlphabetizingFirst, make sure the menu that you are editing is the one that is actually shown on the website (See menus, manage location)
To add a new home menu button, go to Edit menus, View all pages.
If it’s not there, create a new link to the FrontPage of your website, call it home, and add it to the menu.Forum: Themes and Templates
In reply to: [Kvarken] How to remove curly bracketsVersion 2.2 has a new design option in the customizer to remove the curly brackets.
Forum: Themes and Templates
In reply to: [Kvarken] Comments –>change to no follow ?Can you please specify what link you mean with “comments URL”?
Forum: Themes and Templates
In reply to: [Kvarken] using PNG file in headerMarking this topic as resolved with the latest version of the theme,
there is now a way to hide all borders.Forum: Themes and Templates
In reply to: [Kvarken] How To Change Content Width On a Single PageMarking this topic as resolved with the latest version of the theme.
Forum: Themes and Templates
In reply to: [Kvarken] how to remove comments on homepage?Marking this topic as resolved
Forum: Themes and Templates
In reply to: [Kvarken] How to change the H1 tags ?Hi,
the stylesheet can only change the styling of the tags, not where they are printed out. ??If you look at single.php, that controls the posts, you will see it
includes the following:
<h1 class="post-title"><?php the_title(); ?></h1>
but also this function: kvarken_meta.
the kvarken_meta is in the inc/customizer.php file.
You will find that this in turn uses kvarken_author,that prints out the h2 tag around “About…”The h2 class for the titles in the sidebar are actually printed by WordPress core. They can be overwritten, see https://codex.www.ads-software.com/Function_Reference/register_sidebar
Forum: Themes and Templates
In reply to: [Kvarken] Show Header on all pages?Hi,
to show the header on all pages you need to remove line 37
if ( is_home() || is_front_page() ) {
and line 56
}
in the file header.phpTo remove the site title, go to the customizer and uncheck the “show text in header” option.
To remove a title from a page format, it’s best to you create a new template:
Copy page.php and rename this copy to something distinctive.
At the top of the new file, inside the php tag, add:/* Template Name: Your template name of choice /*
Then find and remove this line:
<h1 class="post-title"><?php the_title(); ?></h1>
Then activate the template for the page that you don’t want to display titles on.
Forum: Themes and Templates
In reply to: [Viking] Get rid off Comments and Leaving a replyHi,
In image.php, single.php, and page.php remove the text
comments_template();
then in content.php you want to remove line 39-41.
if ( ! post_… to the ending span.in image.php remove the whole if ( comments_open() down to the edit link. lines 65-73.
Forum: Themes and Templates
In reply to: [Kvarken] using PNG file in headerHi, to remove the border, find this code in style.css
header img{ border-radius:6px; border:3px solid #e6e6e6; position:relative; z-index:7; }
Remove the line starting with border:3px solid…
You might also want to check the “remove shadows” option in the customizer.Forum: Themes and Templates
In reply to: [Kvarken] replacing header image to slideshowtry this
<?php if ( is_home() ) { // This is a homepage do_action('slideshow_deploy', '58'); } ?>
Forum: Themes and Templates
In reply to: [Kvarken] replacing header image to slideshowYes open header.php, and add your plugin code:
To place it above the menu: paste it under the
<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
Below the menu: paste it above the ending </div> that is at the very bottom of the file.
Remove the header image in the customizer.
Forum: Everything else WordPress
In reply to: Other forums on wordpress / website designForum: Themes and Templates
In reply to: [Kvarken] How To Change Content Width On a Single PageI’ll make sure to add this and a full width template in the next update ??