boed1
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can’t find a section of my homepageThanks – I used solid testimonials before but it stopped working. My issue is how to insert the shortcode. I have it for another product but I don’t see how to insert it. (to be clear, I have the actual shortcode – but since I don’t see the place to enter it when I edit the home page using wordpress, I’m not sure how to do it. I see the content for many of the other sections just no testimonials section at all – I do ctrl f – and put in testimonials – nothing. I look at the entire page and don’t seem to find any place it is supposed to go.
I don’t know WP well at all but would like to relearn it. It seems like when I edit the home page every section has a field that I can edit – I don’t see a field for it.
Could I perhaps edit the html and just throw in the shortcode where it is missing?
Forum: Fixing WordPress
In reply to: Can I make the images on this page link to other pages?Hello,
This is the archive.php
<?php
/**
* The template for displaying archive pages
*
* @link https://developer.ww.wp.xz.cn/themes/basics/template-hierarchy/
*
* @package csdits
*/get_header();
?><section class=”container-fluid pagecontent”>
<!– Content Blogs –>
<div class=”row”>
<!– row –>
<main id=”main” class=”col-md-9 content” role=”main”><?php if (have_posts()) : ?>
<header class=”page-header”>
<?php
the_archive_title(‘<h1 class=”page-title”>’, ‘</h1>’);
the_archive_description(‘<div class=”archive-description”>’, ‘</div>’);
?>
</header><!– .page-header –><?php
/* Start the Loop */
while (have_posts()) :
the_post();/*
* Include the Post-Type-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 Type name) and that will be used instead.
*/
get_template_part(‘template-parts/content’, get_post_type());endwhile;
the_posts_navigation();
else :
get_template_part(‘template-parts/content’, ‘none’);
endif;
?></main>
<aside class=”col-md-3 sidebar”>
<!– Sidebar –></aside>
</div><!– row end –>
</section>
<?php get_footer(); ?>Forum: Fixing WordPress
In reply to: Can I make the images on this page link to other pages?Thanks – I couldn’t find anything in plugins however in widgets it does have categories listed but I don’t seem to be able how to do much with the categories. I couldn’t find anything in the theme either. I’m not saying they aren’t there but I’ve looked 4 times and couldn’t find them so it is beyond my skill level to find them.
I did find this – https://csdits.com/wp-admin/customize.php?return=%2Fwp-admin%2Fwidgets.php so I’ll see if I can figure out anything based on that. When looking through my theme – on my right hand side even after expanding everything, I don’t see anything called with widgets or categories in the name.
I did find a customizer.php – no idea if this has any bearing
<?php /** * csdits Theme Customizer * * @package csdits */ /** * Add postMessage support for site title and description for the Theme Customizer. * * @param WP_Customize_Manager $wp_customize Theme Customizer object. */ function csdits_customize_register( $wp_customize ) { $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; if ( isset( $wp_customize->selective_refresh ) ) { $wp_customize->selective_refresh->add_partial( 'blogname', array( 'selector' => '.site-title a', 'render_callback' => 'csdits_customize_partial_blogname', ) ); $wp_customize->selective_refresh->add_partial( 'blogdescription', array( 'selector' => '.site-description', 'render_callback' => 'csdits_customize_partial_blogdescription', ) ); } } add_action( 'customize_register', 'csdits_customize_register' ); /** * Render the site title for the selective refresh partial. * * @return void */ function csdits_customize_partial_blogname() { bloginfo( 'name' ); } /** * Render the site tagline for the selective refresh partial. * * @return void */ function csdits_customize_partial_blogdescription() { bloginfo( 'description' ); } /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function csdits_customize_preview_js() { wp_enqueue_script( 'csdits-customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20151215', true ); } add_action( 'customize_preview_init', 'csdits_customize_preview_js' );Forum: Fixing WordPress
In reply to: Can I make the images on this page link to other pages?Thanks – my issue is I cannot seem to track down the name of the page that needs editing or where to look. I’ve tried editing the components of the theme, looked in pages and posts – couldn’t find it. I’m sure it is there but I can’t find it.
- This reply was modified 6 years, 2 months ago by boed1.
Forum: Fixing WordPress
In reply to: Can I make the images on this page link to other pages?Thanks – perhaps I’m not being clear – if you go to the page it gives a list of topics
Clickin on the title of individual topics or on read more gets you to that topic/post page.My goal is to make the PICTURE next to each topic on the listing page I posted above be able to go to the related topic.
So if you were to go to my site
Go to continuity planning BCP -show all articles –
It brings you to a page with a lot of topics.
The first says security camera systems I’d like you to be able to click on the security camera and it goes to security camera systems.
The second shows the hand holding a cell phone I’d like for you to be able to click on it and go to system monitoring solutions.Forum: Fixing WordPress
In reply to: Can I make the images on this page link to other pages?Hello,
I do have the login username and password
I can edit pages and posts.
The category page I linked do not show up as pages or posts in WP.
Thanks!!
Forum: Fixing WordPress
In reply to: If I add 2 columns, is there a way to reduce the gap between them?Thanks! I appreciate it. I just noticed, I can just increase the size of the picture by dragging it in the column and it did the work.
Thanks again for the assist!
Forum: Fixing WordPress
In reply to: Need help with font size in htmlThanks so much!!! I’m new to the stylesheet – first time looking at it thanks to you. I see the font for the footer is right there!!
Have a great day!
FYI – I noticed that in 2.8 in the flip effect it shows the description centered – but when you actually save and view it on the site, it is left justified.
If anyone can figure a way to get the text on the flipped box with all the info I want displayed but make it clickable I would appreciate it. I’m testing it out at csdits.com
Forum: Fixing WordPress
In reply to: Scrape nonce check failed. Please try again. – can’t edit php fileThanks – I found out the reason was that my staging server is a subdomain and my theme only can be edited at the root. I can’t edit the theme in the subdomain environment but I updated my original site then copied the editted them to the staging site.
Forum: Fixing WordPress
In reply to: Why can’t I add a field to my home page?Please disregard, I added
<div class="row introduction"> <h1><?php echo $new_box_area; ?></h1> </div>to my home page php and it resolved the issue.
Forum: Fixing WordPress
In reply to: How do I put hyperlinks and text on pictures?Thanks. I’ll looke into it – I admit I don’t know what a cover block is but I’ll look it up now.
Thanks – I just tried one that works with the button – I went to the button text field and removed everything but left the link untouched. I saved and retested the flip – the flip still occurs but clicking on the flipped box does not engage the link. I may have missed something else in your suggestion.
I definitely would like text on the flipped box.
By the way – if you developed this plug in – it really is impressive!