Jesse McCormick
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [boots] adding a smart blockNo because the function is in the raindrops theme. I placed it in there. When I upgraded boots it obviously wiped my change. I’m too new to know how to do this so it doesn’t change the code in the future, outside of changing the version of the theme in the css.
Feel free to educate me. ??
I have 1.0.2 & it allows me to post to the fanpage but not to the author timeline. It allows me to post to the fanpage (manager on the fanpage & app author) + will allow someone else to post to the fanpage (page admin/owner & not anything on the app) but it won’t post to either of our timelines!
I went with this particular app because it was suggested as the best alternative to manual posting to facebook. Now I question that opinion.
Thanks. W3dgie’s patch worked for me!
ok. Thanks.
I can’t seem to get the slug to work. I use [smartblock id=services-offered] & [smartblock slug=services-offered] both WITH & without single & double (‘ & “) quotation marks.
What am I doing wrong to get it to recognize the slug option described above?
Forum: Networking WordPress
In reply to: Subdirectory Site in Multisite Not Showing Theme StylesMika, the directions said to replace the wordpress section, so I did just what the directions said.
I’ll try your suggestion. It has since been moved to it’s own domain right now & that process was done. But I’ll make sure that the htaccess is just that part & nothing else, just in case.
It’s on it’s own domain on godaddy. But the client’s package there required me to manually install WP, so I was occupied getting the main site itself up & running.
Forum: Networking WordPress
In reply to: Subdirectory Site in Multisite Not Showing Theme StylesI have the same problem. If you go to cny.mic-net.net it works but if you go to cny.mic-net.net/mymedicaremadesimple/ it doesn’t work. & I can’t get the wp-admin to work for the subdir site either. Any suggestions?
I have confirmed the .htaccess contents (see below) & it is chmod for 666. Because of your post above, I also confirmed it is DOT htaccess & not just htaccess.
my .htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
RewriteRule . index.php [L]
# END WordPress