vaamyob
Forum Replies Created
-
Finally, a thread with an intelligent discussion about WordPress/plugins/themes and the GPL.
Forum: Themes and Templates
In reply to: OSWD Theme RequestIt’s guys like this:
https://www.solucija.com/home/css-templates/Who allow guys like me to have good looking websites.
https://rane.hasitsown.com/blog/index.phpI’m tempted to convert every single one of his templates to WordPress themes.
Forum: Fixing WordPress
In reply to: Best way to post videos…–shameless self promotion–
allows you to display entire youtube galleries (or just one video)
https://rane.hasitsown.com/blog/plink/technical/27/wordpress-youtube-video-gallery-plugin/
Forum: Fixing WordPress
In reply to: Mysteriously switching back to default theme…yeah, what HE said.
Forum: Fixing WordPress
In reply to: Mysteriously switching back to default theme…Are you using any “theme switcher” plugin ?
Forum: Installing WordPress
In reply to: parse error wp-admin/install.phpYou messed up the wp-config.php file.
Maybe an extra/missing double-quote.
Past your wp-config.php file here so we can see (without the password/sensitive info).
Forum: Everything else WordPress
In reply to: Being Online 24/7I’m out of here for the night, I hope this thread is still here tomorrow. (even if it’s closed)
Forum: Fixing WordPress
In reply to: Using .htaccess for protection, but asked for password twice.The problem is really with http authentication.
When you request https://domain.com and provide a userid/password it’s for that url only.
https://joe.domain.com is treated as something different and thus requiring a new login.Forum: Everything else WordPress
In reply to: Basic htaccess question if more than 1 htaccessThat’s one of the great benefits of apache’s .htaccess files, as opposed to other web servers with their more static/centralized rewrite/configuration settings.
.htaccess files can be placed randomly in directories and only get invoked when needed.
.htaccess settings even get “inherited” by sub-directories.Forum: Everything else WordPress
In reply to: Being Online 24/7Yeah, that’s my mistake.
I should’ve said exactly what I was expecting.I honestly didn’t think people would, “get their panties all bunched up in a knot” at my attempt at wordplay.
Forum: Plugins
In reply to: Putting adsense between 2 and 3 post on frontpageIn your theme’s index.php:
Look for The Loop:
<?php while (have_posts() : the_post(); ?>
...
<?php the_content('...'); ?>
...
<?php endwhile; ?>and change to:
<?php while (have_posts() : the_post(); ?>
...
<?php the_content('...'); ?>
...
<?php $postcount++; ?>
<?php if ($postcount++ == 2) { ?>
your adsense code goes here
<?php } ?>
...
<?php endwhile; ?>Just make sure you don’t screw up the layout by placing your adsense code in the wrong div etc.
Forum: Requests and Feedback
In reply to: Superfluous Links in the DashboardI agree.
The first thing I did after the upgrade is to go in there and start deleting.Forum: Plugins
In reply to: [Announce] Donation PluginYeah, I originally had just a paypal donate button.
I realized I should thank my donors by linking to their site from mine.My plugin just automates that process.
Forum: Installing WordPress
In reply to: APIYou can use rss to get content from a wp site. You just need an “importer” that understands rss.
Forum: Plugins
In reply to: [Announce] Donation PluginIt’s a beautiful thing.