Forum Replies Created

Viewing 15 replies - 31 through 45 (of 103 total)
  • Interesting…

    By default the search query should look in the content and title, so this may be a case where the query is not using the default.

    Can you confirm that the query loop block on the search page is set to default and not custom? Also, although unlikely, there is nothing in the code that would be altering the query from the default, possibly from a plugin

    bvbaked

    (@bvbaked)

    I’m a little confused at the problem now.

    The original post made me think this was a front-end display issue, but the reply seems to involve a form submission and something of a loop.

    Are you trying to gather data from form fields on the front end and save these to the database? Can you help explain what it is that’s ‘looping’?

    Also, a bit of an overview and use case of what you are trying to achieve might help, and with that someone might also be able to provide a plugin that may be able to achieve the goal if you don’t want to build it from scratch

    bvbaked

    (@bvbaked)

    There are plenty of plugins that allow for fields to be added for use on various post types or users as it seems your use case would need.

    However, most of these would not handle the actual front-end display. The plugins are generally set up to store and record the data and it is your responsibility to handle the display.

    If you contact Buddypress support, they may be able to assist with your solution and provide options

    Forum: Fixing WordPress
    In reply to: Search output
    bvbaked

    (@bvbaked)

    Is that always the case when you search? What I mean is if you search something else and get a different result set, is the first post displayed entirely and the rest just a list?

    If that is the case, then it is likely how the theme handles the search results. That is possible to change but may require adjusting the code or in the full site editor depending on the theme. Sounds like it may be using the_content instead of the_excerpt though which is why you get the full post, but the plugin t-p linked might help you to customize what is displayed

    bvbaked

    (@bvbaked)

    I would suggest you start by setting up an account with Google Search Console which allows you to request an index of your site.

    Left by itself, it will eventually index but you’re at the mercy of the crawlers finding your site so it could be very slow… best bet is to manually get it crawled

    • This reply was modified 9 months ago by bvbaked.
    Forum: Fixing WordPress
    In reply to: Update failed
    bvbaked

    (@bvbaked)

    Unfortunately this is something you’ll need to take up with your theme support.

    That error message suggest your theme is using functionality that is no longer supported in PHP (as of PHP 8.0) and will need to be updated. If you give them the error message that would help them troubleshoot and hopefully they can get it resolved for you.

    In the meantime, if you can stay at a PHP version below 8.0 your site should still function but you won’t be able to update until this is fixed

    Forum: Fixing WordPress
    In reply to: Comment Page

    That is not a page, but rather a post – it’s the starter/default post similar to the Sample Page that comes with a new install. You’ll find it in the admin section near the top of the sidebar menu.

    If you’d like to go a step further, you can follow the instructions here to disable comments as well

    If you could check the error log that may be able to narrow down the error as that doesn’t really show the cause, and without a more descriptive message there isn’t much help that can be provided

    If needed, you can refer to this article to turn on debugging if it is off

    For a custom post type like products, the template would generally not be handled in a theme unless it specifically was built for WooCommerce. You can check this article from Elementor on setting up a product template, but either WooCommerce or Elementor support should also be able to assist

    Forum: Fixing WordPress
    In reply to: Replace Catgoery

    For a full explanation of files, you can refer to the WordPress template hierarchy

    I find this is a great resource to have on hand to explain what files are used or needed if you need to make customisations. If you don’t feel like read, there is an image as well.

    This particular case would fall under the Archive section. If you don’t have anything named category or category-blog then it is likely falling back to archive (most likely) or index.

    Whichever file it ends up being would handle all of them, since these would be the generic fallback case. You might find the_archive_title() if it is a classic theme or the archive title block is using a block theme which would need to be edited to change the title

    Forum: Fixing WordPress
    In reply to: problem with CSS
    .entry-header { 
    display: flex;
    flex-direction: column;
    height: 100%;
    }

    .prezzo {
    margin-block-start: auto;
    }

    If I follow you correctly, this worked when I checked in browser.
    Making the entry-header element into a flex container will allow you to use auto margins so that you can align the link/icons to the bottom of each card no matter how long the text is. It needs the height of 100% so that it fills the available space as well.

    The rest of your ask seems in place as the icons are already aligned to the right.
    There is some extra margin around the button you may want to remove – it is on the input inside the link if you’re looking for the specific element.

    Forum: Fixing WordPress
    In reply to: Admin Core Issue
    bvbaked

    (@bvbaked)

    That appears to be the same error, so perhaps you did not update it correctly?

    If you have CLI access, try using it to update your core files by following instructions here. That might be an easier way than moving files as that can sometimes not quite work as expected.

    bvbaked

    (@bvbaked)

    It looks like the width setting may just be on the wrong block.

    All of the content on your page will obey the content width set for your theme unless otherwise specified. There are two options available for that – wide width and full width – but these can usually only be set on specific blocks or when specific options are selected.

    In the case of your services page, look for the “Columns” block and change the width to full to allow it to stretch out further. I’m not certain of the design you’re aiming for, but I assume you may also run into the same problem with the heading and paragraph above it – these won’t have the width option for them. To get those to be wider, you may need to place them inside a “Group” block which will have the controls for adjusting the width.

    bvbaked

    (@bvbaked)

    This may be some caching on your end as browsers can cache redirects. The author page you see would be the author archive, which looks like it is working just not built.

    I still see the homepage and the login as would be expected though.

    I’m not quite sure what you mean by ‘not accessible by Google’. Is there some other way you’re accessing your site? It all looks to be working to me so not sure what could be happening here

    bvbaked

    (@bvbaked)

    Can you check the Reading tab under Settings?

    There is an option to discourage search engine indexing which may be turned on.

    I believe there are a few ways to register with GSC, one being a DNS entry that you may need to make before you can view it. You can find some instructions here.

    • This reply was modified 10 months ago by bvbaked.
Viewing 15 replies - 31 through 45 (of 103 total)