maxemil
Forum Replies Created
-
Forum: Plugins
In reply to: [NextGEN Facebook] 0 is a protected WP option and may not be modifiedSeems to work as planned now jsmoriss, thanks!
Forum: Plugins
In reply to: [NextGEN Facebook] 0 is a protected WP option and may not be modifiedI got the error too, and the tip about inserting the NGFB reset seemed to work.
– however server getting timeout when plugin is activated, and visiting a page with 560 images (3 different galleries shown by thumbmails on same page)…
I have been super pleased with the plugin though ??
Forum: Plugins
In reply to: [SoundCloud Shortcode] Fatal error so the plugin would not activatedisable the jetpack plugin, or disable the soundcloud-shortcode plugin.
Forum: Plugins
In reply to: [Secret Content] Sidebar gets pushed right when hidden content appearsThere are no widgets in this plugin.
if you have a link to your website it would be easier to see what is the problem.
wild guess.. when content i hidden, the result is 0 posts/pages, and you get a 404 – that is formattet (css) in a bad way?Forum: Plugins
In reply to: [Praison SEO WordPress] [Plugin: SEO WordPress] Plugin doesn't workhome and front_page works out of the box
– the pages and posts are missing the keywords and the description meta…I kinda rewrote the seo-metabox-class.php file, but the following should do the trick:
find this (almost at the bottom):
elseif($checkvalue!=NULL){ if($uid=='zeo_description' && get_option('zeo_home_description')==NULL )echo "<meta name='description' content='".$seo_data_class->zeo_get_post_meta($uid)."'/> "; if($uid=='zeo_keywords' && get_option('zeo_home_keywords')==NULL)echo " <meta name='keywords' content='".$seo_data_class->zeo_get_post_meta($uid)."'/>"; if($uid=='zeo_index' && !is_front_page())echo " <meta name='robots' content='".$seo_data_class->zeo_get_post_meta($uid)."'/>"; }
replace it with
elseif( $checkvalue != NULL ) { if( $uid == 'zeo_description') echo '<meta name="description" content="'.$seo_data_class->zeo_get_post_meta($uid).'"/>'; if( $uid == 'zeo_keywords') echo '<meta name="keywords" content="'.$seo_data_class->zeo_get_post_meta($uid).'"/>'; if( $uid == 'zeo_index') echo '<meta name="robots" content="'.$seo_data_class->zeo_get_post_meta($uid).'"/>'; }
Best regards – lovely plugin – i think you did a nice job ??
if you are actively sending them a link – then its like the same procedure when creating users and letting wordpress send them a mail anyways?
But yea I understand your thing – you need each mail (or user) to have individual private content.
I’ll write this on a “suggestions list” (content only for specific user).Best Regards.
it just that its something someone actively decided to put the extra / in the theme. If it were as critical for some sites as you indicate, then it would also be added to the wp-options table for the wordpress url / site url ?
When I link to my site I link to the site url, not the site url/
Anyways, I dont know enough about browser behavior and need for redirects to make a sane argument – it was a reflection on how a specific site told me to cache and me wondering why there are being added a / to my site.. Have a lovely day ??
Forum: Plugins
In reply to: [Secret Content] [Plugin: Secret Content] redirect visitors to login pageThe way the plugin works is to remove the content from the wordpress query if the visitor is not logged in.
I would be able to do a “if content is marked secret, show a page anyways, but with a login form instead” .. Ill put it on the requests list, no timeframe right now though ??
Content that are hidden by “secret content” is visible to members that are logged in – so it is password protected too – by the users individual password.
Whatever fits your need ??Basically its esthetics.
my url is advertised without a trailing slash – like most other sites in the world, yours too I guess.
There is no reason to add it to the logo / site name “go to the frontpage” link.I dont recall seeing
<?php echo get_bloginfo('wpurl').'/'; ?>
explicitly adding a trailing slash before in any themes – and basically I just find it odd to add it on the logo/frontpage link…??
to remove the trailing slash
It sounds to me, that you want a login mechanism that is based on anonymous visitors who know a password? (not members, just knowing the password) ?!
Maby you can install wordpress in a subfolder, then use a .htaccess and tell your friends the password for that subfolder… just an idea.
Forum: Plugins
In reply to: [Secret Content] [Plugin: Secret Content] redirect visitors to login pageHappy to hear it works as intended, if you are not logged in, there shouldent be any traces of the existance of the content.
One way to do this, is to let your themes 404 page include a loginform if the visitor is not logged in – or simply write a message on the 404 template, that “oops did you expect more content here? try logging in first!”
Forum: Plugins
In reply to: [Secret Content] [Plugin: Secret Content] SEODo you want to search engine optimize on content that are hidden?!?
I dont get it?I suggest making a teaser page or popup – on this you explain that members get more content, tease them with a snippet of the content and seo optimize that ??
Forum: Plugins
In reply to: [Secret Content] [Plugin: Secret Content] Not "hidden" in menuHi Kenan,
Well the content is hidden – that good ??
So the question is related to how the menu is being build.
I will go doublecheck various menu functions and see if I can reproduce a similar behavior.If you could provide me with a link to the page in question, then I can try to determine why the menuitem is not being hidden.
Sorry for the late reply – its summertime, and wordpress dident send me a notification ??