paulwpxp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Airi] Header Height too bigThere is this inline style
height: 84px; min-height: 176px;in div#masthead-sticky-wrapperwhich theme demo doesn’t have. This means the style must be injected via theme options setting or page builder configurations. I suggest looking into it and change it there.Forum: Localhost Installs
In reply to: phpMyAdminPlease allow me to add to Dion Designs’s answer above.
Since the error message also refers to WordPress, I suppose you are not having trouble with phpmyadmin but rather installing WordPress.
Did you put in db info in
wp-config.phpcorrectly?https://wordpress.org/support/article/editing-wp-config-php/
Forum: Networking WordPress
In reply to: Media Images Renamed to xyz-scaled.jpgThere is this new feature in WordPress 5.3 that allows users to upload big image file (threshold being either width or height of 2560px) and the core will scale it down.
I suppose the problem you are facing is with the WP All Import plugin, I suggest reporting this issue to the plugin author so that he/she could update the plugin to recognize the new scaled down image file name.
Meanwhile there is a workaround, we can disable the new scale down big image feature with just one line of code, see detail in this link below.
https://make.wordpress.org/core/2019/10/09/introducing-handling-of-big-images-in-wordpress-5-3/
also there is a plugin to do just that
https://wordpress.org/plugins/disable-big-image-threshold/Forum: Fixing WordPress
In reply to: Remove Sidebar on Category PagesTry this code in Custom CSS
@media only screen and (min-width: 1024px) { body.category #primary { width: 100%; padding: 0 50px; } body.category #secondary { display:none; } }Also, if your site has some kind of caching (web optimization) going on, please remember to clear cache after making changes.
Forum: Fixing WordPress
In reply to: Gallery block : some images now indent with space on leftThere are changes in gallery markup in WordPress 5.3
see detail in this section > Gallery block markup update
Simply put, some themes need to update the CSS, I suggest contact the theme support notifying theme author the issue so that s/he can update the theme.
Forum: Localhost Installs
In reply to: Localhost updating WP site immediatelyAre you sure it caused by the backup plugin? If that’s really the case, I’d first deactivate the plugin and then contact hosting provider asking them to help restore the whole site to its previous stage (all hosting providers should keep some form of backups).
If the damage is too small and you remember what changes need to be reversed, just make use of the plugin, redo the site in your local back to the previous stage of the live site.
Forum: Themes and Templates
In reply to: [Twenty Twenty] Editing the social icons for 2020 ThemeTo set social links is to create a menu with any name, saved, and then assign the location to the menu.
Add Social Icons
https://wordpress.org/support/article/twenty-twenty/#add-social-iconsTo adjust the social links color, please refer theme doc on Custom Colors.
Custom Colors
https://wordpress.org/support/article/twenty-twenty/#custom-colorsWe can also further adjust social links color by overriding the theme’s output using Custom CSS (use the code via Custom CSS option).
I believe this code should do it (change the color code to your linking).
.social-icons a { background: #000; }If the above doesn’t work, try this, which has more specificity on selector to win over theme’s output
body .social-icons a { background: #000; }If that doesn’t do it, use this
body ul.social-icons li.menu-item a { background: #000 !important; }I’d always use this to hide element visually but keep it available for screen reader and search engine (I suppose).
.class-to-hide-visually { border: 0; clip: rect(0, 0, 0, 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; white-space: nowrap; width: 1px; }If the OP only wants to hide header on Pages and not on Posts, use this as a selector
.page .entry-headerForum: Themes and Templates
In reply to: [Twenty Twenty] static page not visibleI’d double check on Static Front Page setting (see link below if you’re not familiar with). I could be that somehow you set it while trying out other themes.
Forum: Fixing WordPress
In reply to: Placing Photos on Gallery PageYou’re welcome 🙂 I’m happy to help around the community when I can.
Forum: Fixing WordPress
In reply to: Placing Photos on Gallery PageUse this example in Code Editor mode, not Visual Editor mode.
<ul> <li><a href="http://example/people/johny">Johny</a></li> <li><a href="http://example/people/debbie">Debbie</a></li> <li><a href="http://example/people/henry">Henry</a></li> </ul>So that is it, just replace the link (direct URL to each sub-page) and the page title.
You mentioned having 2 level depth sub pages, which I personally think making thing unnecessary more complicated, but you might have good reason for it. To do that see example here https://www.computerhope.com/issues/ch001703.htm , basically we just need to nest another set of
<ul>within it.If you like the idea of manually creating the list, don’t be put away by the code, there are only 3 really simple HTML tags here:
<ul>,<li>,<a>, you can search for tutorial on how to use them.But manually doing this is only good for when we have small limited amount of pages. There are plugin solution that automatically lists subpages (and much more options), it’s good for when we have lot of pages to manage, and it’s less prone to making mistakes. Shown here are just few of them that come up in the search, please look around and don’t be afraid to try them out.
Page-list
https://wordpress.org/plugins/page-list/Content Views – Post Grid & List for WordPress
https://wordpress.org/plugins/content-views-query-and-display-post-page/Display Posts – Easy lists, grids, navigation, and more
https://wordpress.org/plugins/display-posts-shortcode/Forum: Fixing WordPress
In reply to: How to search for broken images link in posts?The best solution is to make a zip file of the upload folder from original site and then FTP to the new site’s upload folder and unzip it. Before doing that, make a backup of the new site’s upload folder, I’d just rename it to something else and delete it after making sure the new upload folder is completed and working fine.
If there are still some broken image links, see to it that they are direct links to images source hosted outside which sometimes get deleted, in this case we can only find new images and always upload to WP and not direct link. There are broken link checker plugins, just search for it in plugin repo.
Forum: Fixing WordPress
In reply to: Placing Photos on Gallery PageWhat I envision is for visitors to be able to open the page and find a list of individual names and they could then click on the name and access a portfolio of photos of that individual.
There are many ways to achieve that like using Page/child-page or using Posts with tag (or category).
If you want to go with Page/child-page, just go ahead and create a main or so called landing page to host all the links to child-pages, the create each page assign as sub-page of the main page. In each of child page, name the title as the individual name and put in text and image in the content area. In the main page, just manually make a clickable link to all those child pages, or use some kind of plugin to automatically list clickable links to its child pages.
To use Posts with tag (or category), create post with individual name as its title and put in text and image in the content area, and assign a tag (name the tag like “People”), use the tag archive link in the menu, when user click on it will lead to the tag archive page automatically created by WP, which shows links to all the posts within that tag.
Forum: Fixing WordPress
In reply to: Deleting site keeping storeUsually the store is just a plugin installed separately or bundled as part of the theme, so we can’t just delete the site and keep the store. But we can remove all the site contents (page/blog) and configure the main store archive page as site front page.
Forum: Fixing WordPress
In reply to: Suddenly cannot update my websiteIf you have some kind of security plugin installed, see to it that it’s configured properly.
Check file permission (do this only if you know how to SFTP to the site)
Check .htaccess , we can just delete it (or save it somewhere) and then visit permalink setting page and click save, WP will regenerate a new one.