Forum Replies Created

Viewing 15 replies - 1 through 15 (of 393 total)
  • How your website shows content, is based on the theme you are choosing. So you find up the right layout you want by choosing the right theme. WordPress also has Full site editing themes now and you can customize things with that too. Its a lot to take in, so go about learning it on the side before you decide to change your site.

    I think its totally up to you to see how you can make it work as per how you want it. You can’t go very wrong with either page vs post. Additionally this plugin enables you to make post to page or vice versa. So give it a try and have fun with it 🙂

    Great! Hope they can fix the bug on their end.

    Were you able to try the code snippet I gave you? If you can’t fiddle with code yourself, I think your best bet would be to switch themes.

    Both are essentially HTML pages of your website, but there are some assumptions around both which is the difference you see here. Posts are meant to be time based content that you push out to readers – like a journal log. Pages are forever live content. There are differences in URL, but that can be tweaked in Settings > Permalinks in WordPress admin panel.

    This is why default sorting for posts is chronological – most recent on the top.

    Comments are by default not enabled on pages, but you can enable them if you require.

    Whether post or page has a sidebar or not, is totally dependent on how the WordPress theme you are using, has chosen to show them. Some themes would let us choose layouts as well, so you can have sidebar no pages as well.

    This is NOT normal behavior. As of now, your site has a backdoor that is letting someone malicious execute actions on your website. Even if you find the culprit plugin, you can’t be sure its all fixed. So follow through with that guide I suggested in the previous response.

    Seems like $current_options is an empty string rather than an array, which causes an issue when code tries to lookup an entry inside of it.

    You can try to save settings in your theme, where you control the banner title for category or something & that should fix it. Otherwise, to fix it in code, I would need to see the whole file but it would be something like:

    if isset( $current_options['banner_title_one_category'] ) {
        $h1 = $current_options['banner_title_one_category'];
    }
    if isset( $current_options['banner_title_two_category'] ) {
        $h2 = $current_options['banner_title_two_category'];
    }
    if isset( $current_options['banner_description_category'] ) {
        $bd = $current_options['banner_description_category'];
    }

    Did you try the first 2 options I suggested? You didn’t say anything about those points. You need to do better if you are asking for support & others are taking the time to help you out.

    You can try disabling all plugins to see if the dropdown shows up after that? If yes, then one of the plugins is the culprit, which you can find by enabling them one by one and noticing when it gets hidden again. If not, then try switching to default theme as well, along with plugins deactivated to see if there is some code in your theme that’s hiding it.

    If you can’t do that live, then setup a clone of your live site elsewhere (call it staging or testing environment) and do it there.

    I have reproduced this on my install as well. This is definitely a bug with pagination block.

    I found two such issues reported: https://core.trac.wordpress.org/ticket/51662 and https://core.trac.wordpress.org/ticket/52419

    Glad that did the trick for ya! 🙂

    Can you file an issue here for the docs team about your feedback?

    WordPress automatically redirects urls without trailing slash to trailing slash ones, so you would be fine without doing anything, if you are ok with accepting final URLs with trailing slash included.

    If not, then you would have to change it in every place where it still includes the trailing slash. I think in this instance, the pagination plugin you are using doesn’t account for your configured permalink to not include the trailing slash. It should have a filter with which you can change the URL for pages. Else you can file an issue with the plugin author.

    Are there other instances which still includes the trailing slash?

    Forum: Fixing WordPress
    In reply to: What is this box?

    Yes, functions.php would work. Also, you would need to pull out properties from $post object like $post->post_title to make up your data before you send it.

    Available properties on post object:

    object(stdClass)
          public 'ID' => int
          public 'post_author' => string
          public 'post_date' => string
          public 'post_date_gmt' => string
          public 'post_content' => string
          public 'post_title' => string
          public 'post_excerpt' => string
          public 'post_status' => string
          public 'comment_status' => string
          public 'ping_status' => string
          public 'post_password' => string
          public 'post_name' => string
          public 'to_ping' => string
          public 'pinged' => string
          public 'post_modified' => string
          public 'post_modified_gmt' => string
          public 'post_content_filtered' => string
          public 'post_parent' => int
          public 'guid' => string
          public 'menu_order' => int
          public 'post_type' => string
          public 'post_mime_type' => string
          public 'comment_count' => string
          public 'filter' => string

    Do mind that any syntax error in that file and your site would stop loading, so make sure you are able to change it again when you save it i.e. changing that file other than the WP file editor.

    The URL for “Member login” button is probably wrong. It takes me to http://invoicearamcoholidays.com which is a different website altogether and why it says it can’t find the DNS for that domain & don’t know what to do with it.

    You need to update the URL to be correct.

    Technically, a URL with / and without it are considered two different URLs, which is why should stick with one version of URL to avoid duplicate content issues.

    WordPress likes to have the trailing slash and there is no harm in it. Its not productive to change links everywhere in code just to not have the trailing slash since it has no impact on SEO.

    Forum: Fixing WordPress
    In reply to: What is this box?

    The outline is an essential visual cue for users who navigate websites using a keyboard. When you remove or hide the outline, it becomes harder for these users to see which element is currently focused.

    If you decide to remove the default outline via CSS, it is important to provide a suitable alternative style to indicate the focused element. You could use a different visual indication, such as a change in border or background color, to clearly show users which element is currently active or has focus. This way, you can maintain accessibility while achieving your desired aesthetic.

Viewing 15 replies - 1 through 15 (of 393 total)