Your PHP installation appears to be missing the MySQL … After deleting and restarting from cpanel
You probably deleted some files your hosting provider needs. I would reach out to them for assistance.
You probably deleted some files your hosting provider needs. I would reach out to them for assistance.
If you are looking for the ID of the every published page, then you need to query them all. To do so, write a simple query that grabs every page from database: $args = [ ‘post_type’ => ‘page’, ‘posts_per_page’ => -1 // Query all pages ]; $pages = new WP_Query( $args ); Now, run a … Read more
I think your method sounds solid and with custom, hand-designed websites your time frame is quite reasonable. We primarily use the Divi theme which is highly customizable and it still takes us few days to get from concept to launch. The vast majority of time is in the fine details and tweaks, and those are … Read more
so I turn to you guys to help me see what I am doing wrong here. First thing your doing wrong is over complicating a simple effective API. Your code makes no sense. Your mixing functions that echo output with arbitrary html mark up that gets assigned to a non existing class property that nothing … Read more
It looks like you are using Advanced Custom Fields. Your “Product ID” is storing the object, instead of just the ID. Below shows you how you can access the post ID, otherwise just change your field saving option for Product ID. It’s a simple foreach statement. foreach( $pages as $page ) { echo $page[‘product_id’]->ID; }
After reviewing a WebPageTest of your site, it looks like you’re loading a lot of different JavaScript and CSS files. I would really recommend to minify and combine your JavaScript and CSS. You can use CloudFlare (which I highly recommend), W3 Total Cache, or WP Minify Fix. Be careful though, often times minification can break … Read more
If you are talking about the wp-admin dashboard, then, the editor will be inside Appearance > Editor. The $12 you are paying looks like just the domain name fee. For safely editing the php files, you need ftp or sftp access. You need to contact the Tumblr support team for this issue.
ohwild_entry_meta_header() is missing the closing }.
$pages is an optional parameter. If not set, $pages will equal an empty string. So if($pages == ”) checks to see if that parameter has been set. In this call, the parameter has not been set: kriesi_pagination(); In this call, the parameter has been set: kriesi_pagination(5); In the tutorial link that you posted, read this … Read more
You’re missing <?php and ?> <?php if( in_category( ‘movies’ ) ) { // this (end php, start html) -> ?> <span style=”font-size:16px”> <strong>Movie:</strong> <?php the_field( ‘movie_name’ ); ?> (<?php the_field( ‘movie_year’ ); ?>)<br/> <strong>IMDb:</strong> <?php the_field( ‘imdb_link’ ); ?><br/> <strong>Rotten Tomatoes: <?php the_field( ‘rt_link’ ); ?> <br/><br/> </span> <br/><br/> <?php // <- this (end html, … Read more