How can I move the posted-on date above the post and below the entry-header?

Copy the file that renders the section of the site from the parent to your child theme, keeping the structure the same as the parent. Then make the code change in your child-theme copy and the theme will then use that file instead. See here for more information on doing this: https://codex.wordpress.org/Child_Themes#Template_Files

How to echo the translated custom field?

can you do this: get_post_meta(get_the_ID(), ”, true); print_r($meta); or get_post_meta(get_the_ID(), ‘my_custom_field’); print_r($meta); the first will pull all custom post type on the current post, and the second restricts to the field. You should get an array and then you’ll know which item in your array is the field title you’re looking to pull. then you … Read more

Add a filter to a method in the parent theme

Try with init hook add_action(‘init’, ‘child_theme_hooks’); function child_theme_hooks() { add_filter(array(‘Raymond_NewsletterWidget’, ‘get_widget_form’), ‘translate_subscribe_btn’); } function translate_subscribe_btn() { $new_form = str_replace(‘Subscribe’, ‘إشترك الآن’, $form); return $new_form; }

plugin modal/popup integration best practice

You should put it inside ‘the_content’ hook. 1)Create first plugin which has the form that proccess simple form submission. 2)And then call that page in iframe window.Like this: <—YOU DIV STARTS HERE FOR POPUP WINDOW–> <div id=”iframeclasses”> <?php add_thickbox(); ?> //Your form link <a href=”https://wordpress.stackexchange.com/questions/248296/YOUR_LINK_GOES_HERE&KeepThis=true&TB_iframe=true” class=”thickbox”> </div> 3)iframe window open by following code. <input type=”submit” … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)