kleinermann
Forum Replies Created
-
Forum: Plugins
In reply to: [Wishlist for WooCommerce: Multi Wishlists Per Customer] TranslationI downloaded the latest version of the plugin which contains the German translation files. But somehow they don’t work. When i set WordPress to Deutsch (German) i still see the english text.
I have even tried to create my own .mo file and change the name of the file but nothing seems to work.
Does the translation file work for you?
Thanks!
Forum: Plugins
In reply to: [Wishlist for WooCommerce: Multi Wishlists Per Customer] TranslationThanks, i have added the German translation.
Forum: Plugins
In reply to: [Wishlist for WooCommerce: Multi Wishlists Per Customer] TranslationOk, great! I’ll have a look at this and get the translation prepared.
Forum: Fixing WordPress
In reply to: DNS Address Can't be FoundAnd when you add a new subdomain, are you able to access the subdomain before you add the wordpress files? Usually there is some default files in the webroot which should show when you go to the subdomain in your browser.
Forum: Fixing WordPress
In reply to: DNS Address Can't be FoundHow do you create the subdomain? Do you use cPanel?
Forum: Fixing WordPress
In reply to: Transferring from WordPress.com to www.ads-software.comWordPress.com websites are hosted on the WordPress server, whiles on www.ads-software.com you can download the WordPress code and install it on your own server. The developer will not be able to get access to the filesystem on wordpress.com. To transfer the blogposts use the export feature in your WordPress dashboard in the Tools section.
Forum: Fixing WordPress
In reply to: edit showing on my pageThe edit link only shows when you are logged in and have a user role that permits you to edit a post or page. A subscriber for example can not edit a post, a contributor and Author can only edit their own posts, and Editor and Admin can edit all posts.
Here some more infos: https://codex.www.ads-software.com/Roles_and_Capabilities
Forum: Themes and Templates
In reply to: [Optimizer] Aligning Images with Text in Posts and PagesThis doesn’t seem to be a problem with the theme as such, but rather with a Pinterest plugin. You could try to overwrite the pibfi_pinterest class in your styles.css file like this:
.pibfi_pinterest {
display: inline;
}And obviously remove the <center> tag around the image.
Forum: Themes and Templates
In reply to: [Vantage] Yoast WordPress SEO on Custom Home PageAfter some more research and testing it suddenly worked. I’m not sure why, but in case someone else is having the same issue, here a few things i did before it suddenly worked again:
- There was a new release of the module just released now, which i’ve updated to.
- Kept clearing the cache every time i made a change (both browser and WordPress)
- Turned off the Custom Home Page in the Custom Home Page editor (the switch button), and then turned it back on.
For my project it also makes more sense to show the content of the toolbox popup straight away inside the cell.
I think this would be very useful to have an option for this in the plugin settings.
For now i found a solution by overwriting the styles and dequeueing some of the scripts:
in the theme style.css
/* Overwrite Weekly Class Timetable Plugin Styles */ .wcs-schedule td div .wcs-class-details { border-style: solid; border-width: 0; display: block; left: 0; position: relative; top: 0; width: 100%; z-index: 20; } .wcs-active-div {cursor:inherit;} .wcs-schedule td.before-last-day .wcs-class-details, .wcs-schedule td.last-day .wcs-class-details, .wcs-schedule td.before-last-hour .wcs-class-details, .wcs-schedule td.last-hour .wcs-class-details { right:0; } .wcs-active-div > p {display:none;} td.wcs-schedule-cell.active, .wcs-active-div { background-color: transparent !important;} .wcs-active-div a {color: #333!important; cursor:inherit;}
in the themes functions.php file:
// Deactivate the Toolbox effect in the weekly class timetable plugin add_action('wp_print_scripts','example_dequeue_myscript'); function example_dequeue_myscript() { wp_dequeue_script( 'wcs' ); wp_dequeue_script( 'wcs_hoverintent' ); wp_dequeue_script( 'wcs_qtip' ); }
Forum: Networking WordPress
In reply to: network site domain mapping still applied after being removedHi SRD75,
Have you ever resolved this issue? I have the same problem. Even if i delete the site that makes problems, and create a new one with the same name i still have the domain mapping happening.
Forum: Plugins
In reply to: [Connect Matomo (WP-Matomo, WP-Piwik)] [Plugin: WP-Piwik] HTTPS (SSL) supportI have added the line, and now it works for me:
curl_setopt($c, CURLOPT_SSL_VERIFYPEER, false);
But i have to add the line again with every update of the module. Isn’t there a better way to fix this issue?
Also, since i added the line, i get another error:
An error occured: The method ‘getPiwikVersion’ does not exist or is not available in the module ‘Piwik_API_API’. [Support]Forum: Plugins
In reply to: [Widget Context] [Plugin: Widget Context] No longer works.Looking for an alternative, i stumbled over the Widget Logic plugin. It works very well if you need to show widgets only on certain pages: https://www.ads-software.com/extend/plugins/widget-logic/
Forum: Plugins
In reply to: [Widget Context] [Plugin: Widget Context] No longer works.Target by URL not working for me either..
Forum: Networking WordPress
In reply to: No images at all on multisite subdirectories frontend/backendI had the same issue. And the reason why it didn’t work for me was that i added the new code below the already existing code in the htaccess file. So, in case there is anybody else that doesn’t know the basics, the new code needs to replace some of the old one. The whole htaccess file should look something like this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule . index.php [L]
</IfModule>
# END WordPressThere might be more lines, depending on the setup of your wordpress installation.