silsurf
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Download button is black on black?Sorry, the page was pw protected, but now it is available. I tried the following css but nothing changed.
.wp24-dc input[type=download] {
color: #2279b3;
background-color: #ff0000;
} content a.wpdm-download-link:link {color: #2279b3;
} content a.wpdm-download-link:hover {
color: #aaffaa;
}
Forum: Fixing WordPress
In reply to: keep getting email to approve comment, but it is approved?received from the admin account of the hosting site.
Received: from p3plzcpnl496325.prod.phx3.secureserver.net by p3plzcpnl496325.prod.phx3.secureserver.net with LMTP id +wZkL6/GN2Xe7CYAU0H0pA (envelope-from [email protected]) for [email protected]; Tue, 24 Oct 2023 06:29:19 -0700
Forum: Installing WordPress
In reply to: Suggestions on theme for HOA?thanks very much
I do not have access to Plesk or cPanel
Thanks,
Henry
Forum: Fixing WordPress
In reply to: Media Library broken after flawed updateI installed the media library fix plug in. After running it says:
Attachments found: 0
Attachments processed: 0
Errors found: 0No change in the library? Are there settings other than default I should try? Or another method I can attempt?
Thanks
Sucuri plugin is conflicting to the auto install of wp 5.2.2.
Had to manually remove sucuri and manually install wp 5.2.2 on multiple wp sites I use.
Forum: Themes and Templates
In reply to: [Shapely] Any way to simplify this?Thanks very much
Henry
any thoughts about the “( BWP ->Jobs -> press edit your job -> Files tab )”
screenshots?
Henry
Forum: Fixing WordPress
In reply to: Changing NAV links text?All done, thanks for the fantastic support!
Forum: Fixing WordPress
In reply to: Header image resizing?I did, they are unresponsive. I guess I can go to another theme, but when I started searching there were so many people with similar questions I thought I would try support before baling on the theme.
Thanks for your feedback
Forum: Fixing WordPress
In reply to: Changing NAV links text?ahh, ok that makes sense
Forum: Fixing WordPress
In reply to: Changing NAV links text?Thanks, here is the index.php file:
<?php
/**
* The main template file.
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
* Learn more: https://codex.www.ads-software.com/Template_Hierarchy
*
* @package ogee
*/get_header(); ?>
<div id=”primary” class=”content-area”>
<main id=”main” class=”site-main” role=”main”><?php
if(is_home() && !is_paged() ) {
if(get_theme_mod( “featured_section_homepage”) ==1 ) {
echo esc_attr(ogee_featured_section());
}
}
?><?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?><?php
/*
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( ‘content-part/content’, get_post_format() );
?><?php endwhile; ?>
<?php the_posts_navigation(); ?>
<?php else : ?>
<?php get_template_part( ‘content-part/content’, ‘none’ ); ?>
<?php endif; ?>
</main><!– #main –>
</div><!– #primary –><?php get_sidebar(); ?>
<?php get_footer(); ?>
the_posts_navigation([
‘prev_text’=>’Newer Podcast’,
‘next_text’=>’Older Podcast’,
]);Forum: Fixing WordPress
In reply to: Changing NAV links text?I added:
the_posts_navigation([
‘prev_text’=>’Newer Podcast’,
‘next_text’=>’Older Podcast’,
]);To the functions.php, archives.php, singlepost.php and the index.php all in the child theme.
Nothing has changed when I load a page or a post, of course I have done something incorrect, or more likely have yet to add the proper code. If you can give guidance here it would be appreciated.
Henry
Forum: Fixing WordPress
In reply to: Changing NAV links text?thanks