dodi hidayatullah
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change header titleif you use twentyfourteen
the header like this :
<title><?php wp_title( '|', true, 'right' ); ?></title>
hope this help
Forum: Fixing WordPress
In reply to: Redirect index page to another web pagedo you mean
you have example.com and want move to example.com/blog??if that maybe you can try go to setting menu > WordPress Address (URL)/ Site Address (URL) to change the path.. and after that move your main wp to blog..
hope this help ??
Forum: Fixing WordPress
In reply to: Can't Install Latest Upgrade for Word Pressor try this :
write in wp-config.php file following code
define(“WP_MEMORY_LIMIT”, 128);One more thing that when you updare the php.ini file then need to restart the server(apache or IIS); After that you will get updating settings.
Forum: Fixing WordPress
In reply to: Can't Install Latest Upgrade for Word Presshi i think you have problem with memory limit.
please cek detail in here https://www.ads-software.com/support/topic/php-memory-limit-not-updated
hope this help ??
Forum: Installing WordPress
In reply to: Blank screen during 2. step of installationare u use cpanel?? on your hosting?? you can try install with fantastico installer in cpanel. if dont
you can try upload via ftp, and access your site. the wizard will guide you to setup WP and input database to wp config..
hope this help ??
Forum: Fixing WordPress
In reply to: How to show Titles only in first page and catalog pages?if you mean you just want show the title only in first latest post..
you can use css for hide other title header post, just add this code in style.css in appereance > editor
#content article header { display:none; } #content article:first-child header { display:block; }
hope this help ??
Forum: Fixing WordPress
In reply to: Facebook Description/Title Not Populating?hi you can check with this link :
https://developers.facebook.com/tools/debug/
to found error facebook share description
hope this help ??
Forum: Installing WordPress
In reply to: Can't install wordpressif your hosting use cpanel, u can use fantastico installer for the easy why installation. you can ask hosting provider if you dont know about cpanel…
hope this help ??
Forum: Installing WordPress
In reply to: Use old WordPress Installation?if you have all files old WP & database on local computer, why not test on localhost before upload.. if everythink look greate, after that you can use https://www.ads-software.com/plugins/duplicator/ and upload your old wp.
hope this help ??
Forum: Plugins
In reply to: [Youtube Channel Gallery] Fatal error: Line 557maybe the issue in timeout, add this script on plugins youtube-channel-gallery.php:
function wpdocs_extend_http_response_timeout( $timeout ) { return 30; // seconds default wordpress is 5 } add_filter( 'http_response_timeout', 'wpdocs_http_response_timeout' );
this is work for me
hope this help…Forum: Plugins
In reply to: [Simply Instagram] Fatal error: Cannot use object of type WP_Error as arraymaybe the issue in timeout, add this script on plugins :
function wpdocs_extend_http_response_timeout( $timeout ) { return 30; // seconds default wordpress is 5 } add_filter( 'http_response_timeout', 'wpdocs_http_response_timeout' );
hope this help…