netzschrauber
Forum Replies Created
-
I still use this plugin. Functionality depends on your cache engine. I use this plugin together with “WP Fastest Cache” without issues. Maybe this helps you.
Forum: Fixing WordPress
In reply to: WordPress gallery not working with 6.1Thanks for the workaround! Works for Eksell theme as well.
Forum: Plugins
In reply to: [WP GPX Maps] 1.7.0.2: How to disable altitude graph?Quick hotfix to …/wp-content/plugins/wp-gpx-maps/wp-gpx-maps.php at line 660. Simply insert display: none; as follows:
<canvas id="myChart_' . $r . '" class="plot" style="display: none; width:' . $w . '; height:' . $gh . '"></canvas>I also put the download link into a paragraph block.
- This reply was modified 5 years, 9 months ago by netzschrauber.
- This reply was modified 5 years, 9 months ago by netzschrauber.
- This reply was modified 5 years, 9 months ago by netzschrauber.
Forum: Themes and Templates
In reply to: [Gardenia] How to enable the banner slider and tabs?Thanks, works perfect!
Forum: Themes and Templates
In reply to: [Origin] Changing Dollar to Ampersand BugThanks for feedback! It’s good to know that I could help someone in the world 😉 Maybe the theme author would like to get the latest po-file…
Forum: Themes and Templates
In reply to: [Origin] Removing breadcrumbsThanks!
You can also create
functions.phpin your child theme and then add the lines to the newly createdfunctions.php:<?php
add_filter( ‘breadcrumb_trail’, ‘__return_false’ );
?>I just recognized, that usage of CSS
id="site-site-description"is used for a ‘<div>’ or for a ‘<h2>’ element, depending on your content. Now I know why the silver bottom line only appears to my start/entry page…Forum: Themes and Templates
In reply to: [Origin] Changing Dollar to Ampersand BugThe
$larr;issue can be fixed by updating your appropriate language file. You will find the language files in.../wp-content/themes/origin/languages/folder.Get the latest version of Poedit (http://www.poedit.net) and edit your po-file (e.g.
origin-de_DE.po).Search for
$larr;and update the translation to←. I found two lines with a wrong translation.Then save the po-file. Poedit will create/update the mo-file. Copy both file back to your web site.
That’s all.
I can confirm that only WP Administrators and Editors can add new items to a given taxonomy while Authors and Contributors can not. But you are right: The “Custom Taxonomy Creation” section is shown to Authors and Contributors even they can not change anything. “Add Entry”, “Edit” or “delete” buttons have no effect.
That should be changed…