Nirok
Forum Replies Created
-
Hmmm seems to work if addmarkermashupbubble is set to false however that takes away the ability to see the title and also excerpt of the article which isn’t ideal… any ideas on what might be conflicting here?
I found by changing the addmarkermashupbubble=”true” addmarkermashupbubble=”true” that are added when you use the custom field to “false” and “false”… update the post…. then switch them back to “true” “true” shows all of the markers
YEah have the same issue is this something with maybe the post count to display in wordpress or is this to do with the plugin… anybody resolve this yet?
Does Mappity allow for your maps to show in a master map like this plugin does? Yes I was wondering if this feature might be added would help me greatly
Forum: Fixing WordPress
In reply to: How to preserve permalinks and avoid Subcategory 404Not the best solution but the all I could do to fix this was add this as my permalinks: /%category%/%postname%.html
It adds .html to the end of all the posts but sub cats work
Forum: Plugins
In reply to: [Plugin: Post Expirator] Daylight Saving Time problem (?)Hi if you are having problems with the time zone you may need to look at what you are selecting in wordpress general settings as your timezone for example are you selecting “UTC +4” or any of the other hour selections? If so and its not working try selecting your timezone based on your closest city with the same timezone rather than using hour offset. For example “Auckland” rather than “UTC +12”. This fixed the issue for me. There must be an issue with the hour offsets. I don’t know if this was a new feature in wordpress 3, I previously always used the hour offset however I just saw that the city option was avaiable and selecting this seemed to have fixed it
Forum: Fixing WordPress
In reply to: Quick Post Widget questionI’ve got this working well in a page but one thing which would be great is an upload option like in the quickpress widget in the admin dashboard on the quick post area rather than having to go into the visual editor? Also is there anyway to add a preview onto the same form?… similar to the way it works in the post form in the admin area? where it opens in a popup…
Hi this looks like a cool plugin and have just installed it with 0.9.4 last week… i have it showing on the front page just cant get the posts to work… i’m filling in the info below the post with photo and title and captions etc etc… then hitting publish but it isn’t showing up anywhere… not in the admin side nor the frontpage area… just shows the black box with the load thing… also had errors from obviously the javascript… so just updated which i was waiting for and awsome you got onto that quickly which got rid of the errors however i’m still not been able to save the info i add to the posts to show up – still getting the black background with load thing… just wondering if there is a permission issue here i am missing out on or jsut wondering if the information should dissapear that i put into the post once i hit the update button? i haven’t had this working any have only installed from 0.9.4 onwards…. obviously you are still working on this however i just need to know that this isn’t something i have missed – anyway once this gets working i’m sure it will be a great plugin
thanks for the efforts
Forum: Plugins
In reply to: How to allow contributors to view/edit their own posts onlyfunction posts_for_current_author($query) { global $user_level; if($query->is_admin && $user_level < 5) { global $user_ID; $query->set('author', $user_ID); unset($user_ID); } unset($user_level); return $query; } add_filter('pre_get_posts', 'posts_for_current_author');
put this in functions.php
Forum: Fixing WordPress
In reply to: photos in users profileTheres tonnes of author photo ones which i have installed just after the ability to add several photos to be displayed in author.php
Forum: Fixing WordPress
In reply to: Show external images in post within thumbnailIts great to see there so many different ways, i’ll check out this way and see if its better than the above solution… i’m gonna definitly use that link plugin to resize it aswell
Awsome I love WordPress!!
Forum: Fixing WordPress
In reply to: Show external images in post within thumbnailHey thanks this is another way of doing it! I actually just did this:
Added this to functions.phpfunction getImage($num) { global $more; $more = 1; $link = get_permalink(); $content = get_the_content(); $count = substr_count($content, '<img'); $start = 0; for($i=1;$i<=$count;$i++) { $imgBeg = strpos($content, '<img', $start); $post = substr($content, $imgBeg); $imgEnd = strpos($post, '>'); $postOutput = substr($post, 0, $imgEnd+1); $postOutput = preg_replace('/width="([0-9]*)" height="([0-9]*)"/', '',$postOutput);; $image[$i] = $postOutput; $start=$imgEnd+1; } if(stristr($image[$num],'<img')) { echo '<a href="'.$link.'">'.$image[$num]."</a>"; } $more = 0; }
and then added this to the template:
<?php getImage('1'); ?>
Forum: Plugins
In reply to: [Plugin – Max Banner Ads] – How to remove linkThis is a brillant plugin and i would suggest you purchase the pro version as you aren’t allowed to edit the source code. If you are desperate then just add #sidebar span {display:none} it doesn’t get rid of the link, so it still gets the benefits from the google link, but it does stop it been visable to users of the website…
Forum: Fixing WordPress
In reply to: uploading blog from offline writer to wordpress siteI found a plugin which fixes this, its an issue with the host provider
Forum: Fixing WordPress
In reply to: uploading blog from offline writer to wordpress sitethanks will do