bb23
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Action when max width changesI 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.Forum: Plugins
In reply to: [Post Grid and Gutenberg Blocks - ComboBlocks] Border around postsThank 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 5 years, 10 months ago by bb23.
Forum: Plugins
In reply to: [Post Grid and Gutenberg Blocks - ComboBlocks] Border around postsHey, sorry the URL was not a link.
https://htcuhlenhorst.deIf the feature is not available, please tell me whether it is in the Pro Version of the Plugin.
Forum: Fixing WordPress
In reply to: Header: Arrange items around central item.Ok thank you for your reply.
I guess ill just leave it for now then.Forum: Fixing WordPress
In reply to: Redirect to page other than Wp-Admin after log out?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 folderSearch 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 5 years, 10 months ago by bb23.
Forum: Fixing WordPress
In reply to: How to insert graphic into post with multiple linksFirst 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.www.ads-software.com/plugins/page-scroll-to-id/Forum: Developing with WordPress
In reply to: Customize wp_login_formThank you so much!
Exactly what I was looking for- This reply was modified 5 years, 10 months ago by bb23.
Forum: Developing with WordPress
In reply to: Customize wp_login_formAnalysing 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:
Checking the console might have revealed the error.
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 5 years, 10 months ago by bb23.
Forum: Developing with WordPress
In reply to: Customize wp_login_formthank 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 withscript_new.js
in my functions.php
Did I add the jQuery correctly?- This reply was modified 5 years, 10 months ago by bb23.
Forum: Fixing WordPress
In reply to: Login dialogue in headerIf 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.Forum: Developing with WordPress
In reply to: Customize wp_login_formThank 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?Forum: Plugins
In reply to: [Post Grid and Gutenberg Blocks - ComboBlocks] Border around postsThe link is
htcuhlenhorst.de
thank you for your helpForum: Plugins
In reply to: [Post Grid and Gutenberg Blocks - ComboBlocks] Border around postsTo 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 5 years, 10 months ago by 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.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…