mebishwak090
Forum Replies Created
-
I forgot to tell the version of the IE, Its 11.
Version: 11.737.17763.0This is not a good idea to edit the plugin files but if you can not deactivate this plugin below is the fix.
Plugin code- line number 102- 108 ihaf.phpif ( empty( get_option( $this->plugin->db_welcome_dismissed_key ) ) ) { if ( ! ( $pagenow == 'options-general.php' && isset( $_GET['page'] ) && $_GET['page'] == 'insert-headers-and-footers' ) ) { $setting_page = admin_url( 'options-general.php?page=' . $this->plugin->name ); // load the notices view include_once( WP_PLUGIN_DIR . '/' . $this->plugin->name . '/views/dashboard-notices.php' ); } }
change to –
$welcome_key = get_option( $this->plugin->db_welcome_dismissed_key ); if ( empty( $welcome_key ) ) { if ( ! ( $pagenow == 'options-general.php' && isset( $_GET['page'] ) && $_GET['page'] == 'insert-headers-and-footers' ) ) { $setting_page = admin_url( 'options-general.php?page=' . $this->plugin->name ); // load the notices view include_once( WP_PLUGIN_DIR . '/' . $this->plugin->name . '/views/dashboard-notices.php' ); } }
Forum: Plugins
In reply to: [ACF Photo Gallery Field] Using the pluginDo not use ACF’s default get_field() function instead use
$images = acf_photo_gallery('gallery_images', $post->ID);
It will give array of images. We can view what we actually get byvar_dump($images );
Forum: Plugins
In reply to: [ACF Photo Gallery Field] PHP Photo GalleryYou are using wrong function to pull gallery image it should be:
$images = acf_photo_gallery('galeria_imagem_patro', $post->ID); if( $image) ....
IF we use get_field(‘galeria_imagem_patro’, $post_id); we get IDs of gallery images.
Forum: Plugins
In reply to: [WP Responsive Menu] Dropdown Not Just The Triangle.Hi,
We can make this by adding small line of css on mobile devices where the responsive menu is visible.
@media only screen and (max-width: 768px) {
.menu-item ul.sub-menu {
display: block !important;
}
#wprmenu_menu .wprmenu_icon_par {
display: none;
}
}