Forum Replies Created
-
AuthorPosts
-
marie21Participant
Thank´s for checking.
I created the child theme as describtion … do you have any idea where the bug could be in the child theme? I really don´t know how to fix it.
marie21Participant… so now it becomes more and more confusing.
If I activate the parents theme the slider title and alt appears but only if I do a change in some of the page which are used as slider at first. Then the source code is showing title=”permalink to:name of the side” and alt as well (also with permalink to).
If I switch the theme from parent to child, then title and alt is shown – but the slider is linked as permalink 🙁
Child theme: Now – if I change the text in the page which is used as slider and check the source code again … title and alt is empty again AND the permalink to is gone (as it should be).
All plugins are still disabled after the switch parent to child theme. As sone as I save some changes in the textbox of the used slider page ….
🙁
marie21Participant… cleaned the browser-cache twice and now I ca see the title and the alt as well.
So, that means the is some bug in the child-theme 🙁
Do you have any idea where I have to look or how I can fix it???marie21ParticipantGood morning Mahesh,
parant theme is activated right now an still the same problem. All plugins are still disabled.
Regards
marie21ParticipantHi,
all plugins are disabeld now. So the mobil device navigation is now shown and working again 😉
but no slider title and no slider alt as well.marie21ParticipantOf course: nest-electronics.com
marie21ParticipantI´m sorry. Can´t write more because I´m blocked all the time – also if I remove all code snippets,…
marie21ParticipantGood morning Mahesh,
Sorry for confusing you.
My first problem is (actually it´s mayby my misunderstanding) if I use featured-page-slider and name the page in the title-line for example “Slider1” than normally the “slider1″ is be shown in the code if I check the side – right?!?
But unfortunatelly the title=”” is still empty and the alt=”” as well.marie21ParticipantHi Mahesh,
the try to answer ends in “you are blocked” Cloudflare Ray ID: 33ef68293ac02726 …
marie21ParticipantHi Mahesh,
now I checked the slider pic´s with this google tool (don´t know how it´s namend in english – click right mouse and chose pic to see the details) – so the title=”” is empty and the alt=”” as well.
If I hide .page .featured-slider .entry-title { display: none; } in the customer css or not it dosn´t matter for this title=”” , will mean it stays still emtpy if I delete the “hide blablanla” or not.
Now if I like to modify the childtheme functions.php to
$catchresponsive_first_image = catchresponsive_get_first_image( $post->ID, ‘medium’, array( ‘title’ => esc_attr( $title_attribute ), ‘alt’ => esc_attr( $alt_attribute ), ‘class’ => ‘pngfix’ ) );‘alt’ => esc_attr( $alt_attribute ) -> this seems to be wrong. Could you please help me out with how I have to do it right?
Thank you very much in advance 🙂
marie21ParticipantHi Mahesh,
unfortunately the “alt” tags from the featured slider will be not recoverd if I do some SEO-tests (Result ALT text: no ALT text).
Could it be, that the customer css .page .featured-slider .entry-title { display: none; } hides it from google and co. ?
Because title = alt like we discussed above …?Is there a possibility to add in custom css a special “alt” only for this sides e.g.
.page-id-98 alt=”picture about something blabla”;Page ID 98 is one of the featured-slider pages ( 1 of 3).
Thank´s for response 🙂
February 7, 2017 at 4:14 pm in reply to: Catch Responsive Featured Slider Navigation – Arrow img missing #109010marie21ParticipantThank you so much!!!
It´s replaced 🙂
Regards.
February 3, 2017 at 4:29 pm in reply to: Catch Responsive Featured Slider Navigation – Arrow img missing #108726marie21ParticipantHi Mahesh,
I have this problem since in intalled some plugins to speed up the side. Now I disabeld them one by one but the arrows are still not showing – same situation on all 3 browsers as described above.
I think this “image” f430 and f429 (arrow left and right) or the connetion to them is broken somewere but I can´t locate theese souce where I have to look for if f430 and f429 is archived correctly…
Can I replace this two symbols anywere?
Meanwhile I have shrunk them to 1px and so they are only visable in chrome if you point the coursor on the slider ….
Thank you very much in advance and have a nice weekend 🙂
marie21ParticipantThank´s for your quick response 🙂
marie21ParticipantHi Pratik,
so after new hours of try&error I find out a solution wich works fine and I can diplay the informations on the right site …
Thank you very much for your support! Now I´m very happy 🙂
marie21ParticipantUpdate: I found it already with this “all pages …”
if ( is_page() || is_category( $category ) ) {
dynamic_sidebar(‘extra-header-widget-area’);
}But I have no idea to show this widget on the right site in the header-area.
Regards
marie21ParticipantHello Pratik,
thank you very much for your fast reply.
🙂 YES-It works!!!
How can I display this widget on all pages (not only home) and I need a little help with the position. It´s just below the logo and it will not switch to the right site of the header.
Regards
marie21ParticipantUpdate: I found the widget in WordPress-Admin Content “Widgets” an add a “Textbox” to the Widget.
Unfortunately it´s not shown in the header 🙁
How can I change it to be shown on all pages?
marie21ParticipantHi Pratik,
I tried this for the catch-responsive theme with replace “catchbase” as “catschresponsive” but I cannot see this widget in “Appearance => Widgets”.
/**
* Register extra custom widgetized area
*/
function catchresponsive_extra_header_widget_init() {
//Extra Header Widget Area
register_sidebar( array(
‘name’ => __( ‘Extra Header Widget Area’, ‘catchresponsive’ ),
‘id’ => ‘extra-header-widget-area’,
‘before_widget’ => ‘<section id=”%1$s” class=”widget %2$s”><div class=”widget-wrap”>’,
‘after_widget’ => ‘</div><!– .widget-wrap –></section><!– #widget-default-search –>’,
‘before_title’ => ‘<h4 class=”widget-title”>’,
‘after_title’ => ‘</h4>’,
‘description’ => __( ‘This is the extra header sidebar widget area that appears in homepage only.’, ‘catchresponsive’ ),
) );
}
add_action( ‘widgets_init’, ‘catchresponsive_extra_header_widget_init’ );/**
* Add Extra Header Widget Area below header#masthead
*/
function catchresponsive_extra_header_sidebar() {
global $wp_query;// Get Page ID outside Loop
$page_id = $wp_query->get_queried_object_id();// Front page displays in Reading Settings
$page_for_posts = get_option(‘page_for_posts’);if ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) {
dynamic_sidebar(‘extra-header-widget-area’);
}
add_action( ‘catchresponsive_header’, ‘catchresponsive_extra_header_sidebar’, 55);
}What did I do wrong?
-
AuthorPosts