@satori83
Forum Replies Created
-
Forum: Plugins
In reply to: [Geolocation IP Detection] MaxMind Precise Use QuestionAwesome sounds good. Been bogged down so I haven’t gotten to the paid sign up just yet. I’ll definitely let you know how it works! This should work even in basic version though too right?
Forum: Plugins
In reply to: [wpMandrill] Associating site with sub-accountWell actually I am using the standard Mandrill plugin, I had forked one made for Multi but the dev dropped support on Github, but I didnt see the point. I’d love to get better reports. Currently each new site I have to create new key, then create subaccount, then set rule, and apply. See here: http://satori-design.d.pr/17EHS
Angelica, have you done much work with Mandrill in terms of setting up custom templates for the different types of notifications that can get generate by WP by chance?
Forum: Plugins
In reply to: [wpMandrill] Associating site with sub-accountActually I finally started to set up the subaccounts in Mandrill, then link each subsite with its unique API key, not I can view reports on just each sub site without anything additional. Unless, were you trying to accomplish something else?
Angelica, would your code work if I was running same child theme on all subsites? All authentication happens under my email address so…
Forum: Plugins
In reply to: [wpMandrill] Associating site with sub-accountBeen looking for same solution for a year
Forum: Plugins
In reply to: [SensorPress] Cannot stop alertsI am actually only getting notifications when sites go up, not when they go down.
Forum: Plugins
In reply to: [Multisite User Management] Extra Fields Not Transferred To Sub SitesI would like to know same thing
Forum: Plugins
In reply to: [wpMandrill] Multisite Support+1 Multisite also
im on nginx too… be nice if there was a checkbox to choose disply apache version or nginx
.
Same issue, although where did it tell you the rules? I didnt even see that part?
Awesome thank you so much
That didnt work, but I can get it to return the title like this, but not the meta?
add_filter( 'aioseop_title', 'satori_rewrite_custom_titles' ); function satori_rewrite_custom_titles( $title, $meta ) { if ( is_post_type_archive( 'portfolio' ) ) { $postType=get_post_type(); $title = "Satori Bucks County Web Design Portfolio Of Web Design Services"; $meta = "View our portfolio of responsive web design made for our clients in bucks county and philadelphia web design. Incuding e commerce websites and moble website design"; } return $title; return $meta; }Ok, so just throw this in my functions.php?
Wow, i was totally trying to make that harder than it had to be..lol. Sorry! The id’s worked perfect.
Thanks, but it doesn’t quite do what I need. If I use the way above, it takes away both pages. See the theme uses child pages to build the homepage, hence the /home/parallax-2 and home/contact. I also have just /contact, but I want that one IN the sitemap. Is there a way to exclude any url that has/home/ in it? Maybe a regex expression or something?