how to change the permalink to a specific location?

echo get_permalink(123); instead of the_permalink(), provided you know the ID of the “specific page”. the_permalink() will always link to the current post in the Loop, and somewhat nonsensically does not take an ID parameter the way that get_permalink() does. Reference: https://codex.wordpress.org/Function_Reference/get_permalink

Echo option page form field value

I think your issue is in this section here: public function bguru_options_page() { // Set class property $this->options = get_option( ‘bguru_logo’ ); $this->options = get_option( ‘bguru_vimeo’ ); $this->options = get_option( ‘bguru_slide_one_image’ ); $this->options = get_option( ‘bguru_slide_one_heading’ ); $this->options = get_option( ‘bguru_slide_one_text’ ); $this->options = get_option( ‘bguru_slogan_heading’ ); $this->options = get_option( ‘bguru_slogan_description’ ); What I would … Read more

Autoblog posts in wpms(network) into main site including featured images

well, what i did finally is to use taxonomies instead of aggregation because cron based solutions are a little bit tricky with server resources and might reduce the performance: install taxonomies plugin add a code to it to attach the blogid of the post as custom field when saving the post add a function to … Read more

Slider height settings

On of the themes you tested (I guess not in preview, but just switching it active) had only small image sizes registered via add_image_size(). There’s a very popular plugin that you can use to “fix” that: Regenerate Thumbnails.