Forum Replies Created

Viewing 15 replies - 1 through 15 (of 18 total)
  • Thread Starter bb23

    (@bb23)

    I think the general problem is with the plugin sticky menu or anything.
    There is already a thread open on the plugins forum, but no solution. I am sure that you can avoid it all by just scrolling to the top when rotating.

    Thread Starter bb23

    (@bb23)

    Thank you for your reply:
    You was right. only the grid id had to be added.
    Here is the code that made it work for me.
    I added it to the custom css section from 2017 theme.

    #post-grid-94 .item{
    	border: 3px solid #dfdfdf;
    }

    as you can see my grid id was 94 and I wanted a grey border.
    Thank you so much once again.

    • This reply was modified 7 years ago by bb23.
    Thread Starter bb23

    (@bb23)

    Hey, sorry the URL was not a link.
    https://htcuhlenhorst.de

    If the feature is not available, please tell me whether it is in the Pro Version of the Plugin.

    Thread Starter bb23

    (@bb23)

    Ok thank you for your reply.
    I guess ill just leave it for now then.

    bb23

    (@bb23)

    An information which theme you are using might help.
    You can try to add this code to your functions.php file.

    add_filter( 'logout_url', 'custom_logout_page', 10, 2 );
    function custom_logout_page( $logout_url, $redirect ) {
    return '<the-URL-you-want-to-end';
    }

    If this does not work you can also change the general-template.php
    Keep in mind that you do not find it in the wp-admin area, but you have to use FTP or WebFTP to find it.
    You find it in the WP-includes folder

    Search there for this code:
    function wp_logout_url

    right below it, you’ll find a return statement.
    When you specify this, you also change the logout url.
    I would definitely recommend you to create a copy of the general-template.php before you start editing.

    • This reply was modified 7 years ago by bb23.
    bb23

    (@bb23)

    First of all I want to make sure that I understand your question:
    You want to click on an image on your website and then the website should be scrolled down to a certain paragraph?

    It is possible to do this with code only, but I guess I would recommend using a plugin.
    I would recommend this one.
    https://de.wordpress.org/plugins/page-scroll-to-id/

    Thread Starter bb23

    (@bb23)

    Thank you so much!
    Exactly what I was looking for

    • This reply was modified 7 years ago by bb23.
    Thread Starter bb23

    (@bb23)

    Analysing the source HTML is something I have never done when before. But I did find the URLs leading to /wp-includes/js/jquery/jquery.js and even my script_new:

    View post on imgur.com


    Checking the console might have revealed the error.

    View post on imgur.com


    I changed the code to:

    jQuery(document).ready(function( $ ){
    	$("#user_login").val('User ID');
    	$("#user_login").on("focus", function(){this.value='';});
    	$("#user_pass").val('Password');
    	$("#user_pass").on("focus", function(){this.value='';});
    });

    now it is showing the placeholder for User Name.
    For the password the placeholder is censored.
    Is there any possibility to make the placeholder visible but censor the user input?
    Thank you

    • This reply was modified 7 years ago by bb23.
    Thread Starter bb23

    (@bb23)

    thank you for the answer. Unfortunately it does not work for me.
    But maybe I am not able to add the jQuery properly.
    I created a file in my Themes/”myTheme”/assets/js directory, named the file script_new.js and pasted your code in it.
    Then to my functions.php I added this code to the bottom:

    add_action( 'wp_enqueue_scripts', 'add_my_script' );
    function add_my_script() {
        wp_enqueue_script(
            'script_new', // name your script so that you can attach other scripts and de-register, etc.
            get_template_directory_uri() . '/assets/js/script_new.js', // this is the location of your script file
            array('jquery') // this array lists the scripts upon which your script depends
        );
    }

    This causes no changes for me.
    I also tried it with script_new.js in my functions.php
    Did I add the jQuery correctly?

    • This reply was modified 7 years ago by bb23.
    Thread Starter bb23

    (@bb23)

    If anyone has the same question:
    This can be done with custom CSS

    #loginform{
    	text-align: right; 
    	float: right;
    }

    This one worked for me.
    With the #loginform you apply changes to this specific form. Then you can add whatever you need.

    Thread Starter bb23

    (@bb23)

    Thank you for your help I was able to remove the labels now
    Now as the labels are removed, A placeholder in the username and password box are missing. Any ideas how to get this done?

    Thread Starter bb23

    (@bb23)

    The link is
    htcuhlenhorst.de
    thank you for your help

    Thread Starter bb23

    (@bb23)

    To make it more clearly:
    Right now my grid item padding is always the colour of the grid item background, and the background (grid container padding) can be any colour. I want a white background for container and grid, but a grey grid item padding …

    • This reply was modified 7 years ago by bb23.
    Thread Starter bb23

    (@bb23)

    Ok I see. Just wanted to know if there is a easy way to change this that I just don’t see.
    Thank you very much for your help. Would you mind removing the links or the screenshots from the website?
    Thank you very much.

    Thread Starter bb23

    (@bb23)

    I just added a new article so the design is good now.
    But on this screenshot you see what I am talking about:

    https://www.htcuhlenhorst.de/wp-content/uploads/2019/05/m329231.png

    There is always the same amount of pictures in one column although the picture could also fit somewhere else.
    Right now it is not that important and it might seem strange but with another composition it can look a little bit strange…

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