Nicklas
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Links] Add fixed linkWorks, thanks!! But a small problem for me; I use the widget twice for showing different categories. Can it be set to show different fixed link depending on category/widget name/something else?
Once again, thanks!
Forum: Plugins
In reply to: [Connect Matomo - Analytics Dashboard for WordPress] Failed to load resourceStill without a clue, still appreciate any thoughts on how to fix this
Forum: Plugins
In reply to: [Connect Matomo - Analytics Dashboard for WordPress] Failed to load resourceTried tracking an other site, worked perfectly when using the code Piwik provides. Using the code WP-Piwik gave me didn’t work… I’ve got 200+ sites I would like to track, but prefer to not add code to aech and every one manually.
Any ideas how to move forward and what the problem might be…?
The code that doesn’t work
<!-- Piwik --> <script type="text/javascript"> var _paq = _paq || []; _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']); (function() { var u="//80.248.227.66/wp-content/plugins/wp-piwik/proxy/" _paq.push(['setTrackerUrl', u+'piwik.php']); _paq.push(['setSiteId', '1']); var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.php'; s.parentNode.insertBefore(g,s); })(); </script> <!-- End Piwik Code -->And the code that does work
<!-- Piwik --> <script type="text/javascript"> var _paq = _paq || []; _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']); (function() { var u="//80.248.227.66/piwik/"; _paq.push(['setTrackerUrl', u+'piwik.php']); _paq.push(['setSiteId', '1']); var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s); })(); </script> <noscript><p><img src="//80.248.227.66/piwik/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript> <!-- End Piwik Code -->Forum: Themes and Templates
In reply to: Shortcode is shown, can it be removed?Problem solved, just used the_excerpt(); instead
Forum: Themes and Templates
In reply to: Shortcode is shown, can it be removed?Where the function is used it says:
<p><?php echo bm_better_excerpt(105, ‘… ‘); ?> </p>Tried increasing $length from 105 to 1500, but that just made it echo the full shortcode, so I need to find a solution that filters out shortcode
Forum: Plugins
In reply to: [BackUpWordPress] BackupWordPress mysqldump error 23Found a solution that worked for me, adding –single-tranaction
mysqldump –single-transaction -u USER -pPASSWORD DBNAME > FILE.sql
Forum: Plugins
In reply to: [BackUpWordPress] BackupWordPress mysqldump error 23I get the same error when doing mysqldump on my VPS
Forum: Networking WordPress
In reply to: Access dashboard via IDAll sites are set up as domainnames, and if I try to go to http://IP.IP.IP.IP/domain.com it shows a 404, same if I try http://IP.IP.IP.IP/site_id and all other combinations I can come up with…
It might be the hosting company has done some special arrangement since it’s a VPS with multiple IP’s, where each site gets it’s own IP
Thought I’d check here first, but I’ll just ask them instead
Forum: Networking WordPress
In reply to: How do I change super-admin username..just as I thought! Thanks a lot for giving a helping hand finding the info!
Forum: Plugins
In reply to: [Peter's Post Notes] [Plugin: Peter's Post Notes] Any chance on a update?I dropped it for old style pen and paper…
It could’ve been some other plugin that was causing the problem
Forum: Fixing WordPress
In reply to: Database Update RequiredI’m having the same problem when upgrading to 3.2.1
Tried removing all themes except twentyeleven/twentyten, but doesn’t help
Tried emptying /pluginsStill stuck in the Database upgrade-loop
Any ideas?
Forum: Themes and Templates
In reply to: Page for category that shouldn't show on indexThanx Esmi, but I just found a solution
In loop.php, after row 56 I added
<?php if (is_home()) if (in_category(‘9’)) continue; ?>So now it looks like
<?php while ( have_posts() ) : the_post(); ?>
<?php if (is_home()) if (in_category(‘9’)) continue; ?>I then created a custom menu with the stuff I wanted and is now happy again 🙂
Forum: Plugins
In reply to: Automatic loginI’m sure it’s doable, I just don’t know how – I’m just a cut-n-paste coder…
I hope someone skilled will answer both of our questions 🙂
Forum: Fixing WordPress
In reply to: Login by URL?Forum: Fixing WordPress
In reply to: Login by URL?http://www.lbsharp.com/wordpress/index.php/2007/12/10/wordpress-auto-login/
Not sure it works with latest version
Edit: This wasn’t what you were looking for, but maybe it’s helpful in some way…