Bernhard
Forum Replies Created
-
Hi,
thank you for your fast answer!
Up to now I didn’t arrive to reproduce the issue.
I’ve now moved some images from one page to another and renamed one.
After that I’ve checked all images and didn’t detect anything.
But I can’t be sure if this is fortune or if this means that moving or renaming is no problem in general.
Also it may be that I’ve overseen a change when searching for it…The only thing I know up to now is that it happens that the copyright changes, but I don’t know under which circumstances…
As the author of AIOSEO doesn’t seem to be interested in fixing the bugs that occurred since v2.x I’ve tested a lot of SEO plugins now.
My favorites are Greg’s High Performance SEO and HeadSpace2 SEO.
In my opinion AIOSEO up to v2.x has been better than both of the above mentioned.
Today I started to switch all my WordPress instances to HeadSpace2.
As the author of AIOSEO doesn’t seem to be interested in fixing the bugs that occurred since v2.x I’ve tested a lot of SEO plugins now.
My favorites are Greg’s High Performance SEO and HeadSpace2 SEO.
In my opinion AIOSEO up to v2.x has been better than both of the above mentioned.
Today I started to switch all my WordPress instances to HeadSpace2.
As futtta has given the right information, I now have commented out lines 1652 to 1656:
function admin_menu() { $file = plugin_basename( __FILE__ ); /* $menu_name = __( 'All in One SEO', 'all_in_one_seo_pack' ); add_menu_page( $menu_name, $menu_name, 'manage_options', $file, Array( $this, 'display_settings_page' ) ); add_meta_box('aioseop-about', "About <span style='float:right;'>Version <b>" . AIOSEOP_VERSION . "</b></span>", array( $this, 'display_side_metaboxes'), 'aioseop_metaboxes', 'side', 'core'); add_filter( 'custom_menu_order', '__return_true' ); add_filter( 'menu_order', array( $this, 'set_menu_order' ) ); */Like this the settings page is still available by “Plugins” => “Options configuration panel”.
Seems to be the best solution as long as this bug isn’t fixed.
Thank you again @futtta!
@ futtta,
thank you for this hack!But i second the request to move the settings page for AIOSEO back to “Settings” without any hack!
Forum: Plugins
In reply to: [Marekkis Watermark-Plugin] watermark is cut at the right sideHi Marekki,
thank you! Sometimes the solution is really easy…
With the space character it works perfect!
That’s absolutly acceptable and not only for temporary.Nice to hear that you like the photos, but it’s not me who created these pictures.
Best wishes, Bernhard
Hey,
found a simple solution for a fallback in case JavaScript is not enabled as you can see at this gallery.
Code in the gallery-template:
<ul id="images"> <?php $attachments = get_children( array('post_parent' => get_the_ID(), 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ASC') ); foreach ( $attachments as $attachment_id => $attachment ) { $image_attributes = wp_get_attachment_image_src( $attachment_id, 'medium' ); echo "<li class=\"thumb"; echo $image_attributes[1]; // width echo "x"; echo $image_attributes[2]; // height echo "\"><script type=\"text/javascript\">document.write('<a href=\""; echo wp_get_attachment_url( $attachment_id ); echo "\" rel=\"lightbox\">"; echo wp_get_attachment_image( $attachment_id, 'medium' ); echo "</a>');</script>"; echo "<noscript><a href=\""; echo get_permalink( $attachment_id ); echo "\">"; echo wp_get_attachment_image( $attachment_id, 'medium' ); echo "</a></noscript>"; echo "</li> "; } ?></ul>Now it would be nice to find a solution for mobile devices.
Bernhard
Forum: Plugins
In reply to: [Plugin: Subheading] default Subheading if is emptyHi,
Thank you very much for the fast support!
That works perfectly!