Kins
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Suddenly error 500 only on plugins updatesOk i’ll try all of that. Thank you.
Forum: Fixing WordPress
In reply to: Suddenly error 500 only on plugins updatesIt was a pain: each time, I neede to desactivated all of it… activate one, udpate it, desactivate it with ftp, and so on…. all is updated but there is something strange there.
How can I investigate further ?Forum: Themes and Templates
In reply to: [Astra] Title of blog not showingok
@vupdraft Hello. I resolved this problem like this: I simply have set a new account Google => no more problem. Strange
Forum: Themes and Templates
In reply to: [Astra] Title of blog not showing@jidwictut9 here is the screecast sent to me by the dev: https://share.getcloudapp.com/kpuAEm65
U have to click on a title in the menu (we don’t see it as clickable, but it is)Forum: Themes and Templates
In reply to: [Astra] Title of blog not showingHi @bsfherman .
I resolve this. There was a kind of secret submenu to do this. Just had to style it with CSS (no problem).
Thank though@mohsinbsf
Hello. I have finally resolved this.
After many (many) tries it was simply a problem with the wp_memory_limit that was too high for the server… Incredible ??
Thank youNo problem: https://pastebin.com/Q5diesAS
I see there this : “No remote despatch: user chose no remote backup service” more than one time… it’s strange: I linked 2 times already and gave the authorisation by Google.
What could block the link between Google and updraft?
EDIT: I have delete all paramters and configuration, uninstalled – reinstalled the plugin, linked with google drive (give the authorization, tell google it was indeed me, a udpraft folder was created in google drive) but nope: doesnt work. Always this line in the new log: “No remote despatch: user chose no remote backup service”- This reply was modified 1 year, 8 months ago by Kins.
Forum: Themes and Templates
In reply to: twentythirteen_paging_nav(); problemHello.
I have found nothing till now…
Anyone to help please?
Forum: Themes and Templates
In reply to: twentythirteen_paging_nav(); problemTo do changes.
But if it doesnt work why should i continue???
It’s interesting to know why it doesn’t work…
In my final purpose i’ll have this:
But the problem stay the same.
Forum: Themes and Templates
In reply to: twentythirteen_paging_nav(); problemIf u want but it’s just a copy from parent theme’s category.php
It’s juste the same file:Forum: Themes and Templates
In reply to: twentythirteen_paging_nav(); problemit works.
But i must have category and single php in my theme child to change some things.Forum: Themes and Templates
In reply to: twentythirteen_paging_nav(); problem@esmi: with the parent theme activated, all work fine!
I have also tried to re install the theme. But it’s the same.
onte thing strange too: when you’re in back office and you have your themes to choose, twenty thirteen have the title tewnty twelve… strange even if i have it reinstalled.Forum: Themes and Templates
In reply to: twentythirteen_paging_nav(); problemWhen i have a category page or a single page:
fatal error: Call to undefined function twentythirteen_paging_nav() in C:\wamp\www\wordpress\wp-content\themes\mytheme\category.php
yeah strange.
Forum: Themes and Templates
In reply to: twentythirteen_paging_nav(); problemBut warning: i have a functions.php in my child theme.
But nothing important i guess:<?php register_sidebar( array( 'name' => __( 'Footer Area One', 'twentyfourteen' ), 'id' => 'sidebar-4', 'description' => __( 'An optional widget area for your site footer', 'twentyfourteen' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => "</aside>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => __( 'Footer Area Two', 'twentyfourteen' ), 'id' => 'sidebar-5', 'description' => __( 'An optional widget area for your site footer', 'twentyfourteen' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => "</aside>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => __( 'Footer Area Three', 'twentyfourteen' ), 'id' => 'sidebar-6', 'description' => __( 'An optional widget area for your site footer', 'twentyfourteen' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => "</aside>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); ?> <?php function custom_excerpt_length( $length ) { return 40; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 ); function new_excerpt_more( $more ) { return '<div class="fixclear"></div><a class="read-more" href="'. get_permalink( get_the_ID() ) . '">Read More</a>'; } add_filter( 'excerpt_more', 'new_excerpt_more' ); ?>