Forum Replies Created
- AuthorPosts
- November 15, 2016 at 13:44 in reply to: After Update (Pro Version) nothing works. JS don't work. #8070
RattusKeymasterTry update to the v1.8.97
RattusKeymasterJust copy link of your gallery and paste it here, like: https://codeasily.com/portfolio-item/gmedia-phantom-pro/
November 15, 2016 at 11:45 in reply to: After Update (Pro Version) nothing works. JS don't work. #8062
RattusKeymasterCan you give me access to your WP Dashboard, so I’ll try to fix it? If you have any cache plugins installed, then clear cache of them?
November 15, 2016 at 11:37 in reply to: Gallery stopped displaying after changing text on page. All other galleries fine #8061
RattusKeymasterOh, seems like you have some cache plugin installed in your worpdress. Did you try to clear cache of it?
November 15, 2016 at 11:33 in reply to: Gallery stopped displaying after changing text on page. All other galleries fine #8060
RattusKeymasterCan you give me temporary access to your WP Dashboard, so I’ll fix it faster on your side?
November 14, 2016 at 23:56 in reply to: Gallery stopped displaying after changing text on page. All other galleries fine #8056
RattusKeymasterNew version of plugin available in WordPress Directory. Update plugin to the latest version 1.8.96
November 14, 2016 at 23:09 in reply to: Gallery stopped displaying after changing text on page. All other galleries fine #8052
RattusKeymasterMinima should be v2.10
RattusKeymasterCan you post link to the gallery page?
RattusKeymasterI can’t help you while your server down or maybe my IP is blocked by your server?
RattusKeymasterAlso try go to Gmedia Settings -> Other Settings -> check “Raw output for Gmedia Shortcode” checkbox -> Update.
RattusKeymasterThis reply has been marked as private.November 14, 2016 at 11:48 in reply to: Hide Individual Item pages/posts from Search Engine Indexing #8035
RattusKeymasterTo exclude search bots you can add to your theme function.php:
function gmedia_post_noindex(){ global $post; if(is_single() && 'gmedia' == substr($post->post_type, 0, 6)){ global $gmDB; if('gmedia' == $post->post_type){ $obj_id = get_post_meta($post->ID, '_gmedia_ID', true); } else{ $obj_id = get_post_meta($post->ID, '_gmedia_term_ID', true); } $noindex = $gmDB->get_metadata('gmedia', $obj_id, 'noindex', true); if($noindex){ echo '<meta name="robots" content="noindex,nofollow" />'; } } } add_action('wp_head', 'gmedia_post_noindex');Then add custom field “noindex” with any value to Gmedia items which you want to exclude from indexing.
OR
you can add code below to automatically exclude from indexing any posts which have ‘exclude_’ in the name:
function noindex_by_post_name(){ global $post; if(is_single() && 'exclude_' == substr($post->post_name, 0, 8)){ echo '<meta name="robots" content="noindex,nofollow" />'; } } add_action('wp_head', 'noindex_by_post_name');November 14, 2016 at 10:42 in reply to: Gallery stopped displaying after changing text on page. All other galleries fine #8034
RattusKeymasterOk, try go to Gmedia Modules and update Minima module to the latest version. Let me know if new version fixed the problem.
RattusKeymasterTry go to Gmedia Modules page -> delete RealSlider module and then install it again.
RattusKeymasterIs it be fine for you if I’ll add “Published/Uploaded by …” right after the Share button? Maybe you suggest better place?
- AuthorPosts
