Category Preset
Make or modify your own presets with detailed settings for categories. The preset you select here will be applied just to this particular category.
Make or modify your own presets with detailed settings for categories. The preset you select here will be applied just to this particular category.
Make or modify your own presets with detailed settings of posts on your blog.
If you use WordPress SEO Plugin (do not forget to turn the built-in plugin off via theme options->general settings->Use Built-in SEO) you can notice that when you share an image, it takes randomly (most likely an image with the biggest size) generated image. The JaW Gallery does not use any post content, so we had
If you encounter with an issue when you want to share some images in JaW Gallery and you still see the different image. Something like this So, please bear in mind that this is not a theme related issue. Unfortunately Facebook uses some sort of a cache system. In this case we recommend you follow
If you do not want to use that image effect on some parts of a page, e.g. on sidebar (first post widget), you can simply exclude that element (image effect). Open your browser debug stuff and find its class Then go to ../themes/gdaynews/js/ and open file jaw.utils.php on line 104 and add there that classes
If you want to change the spoiler image to your own, you will have to need some Image Editor, e.g. we recommend GIMP (we will use GIMP as a default image editor, if you use Photoshop or other image editor, the procedure is the same).
Mashshare Attributes Please follow this link – https://www.mashshare.net/documentation/shortcodes/ JaW’s Mashshare Attributes We added some parameters to make this Mashshare well-suited for our GDayNews Theme. show_all_services – You can show all social buttons True False Mashshare Appearance [mashshare show_all_services="true" shares="false"] [mashshare show_all_services="false" shares="true"]
This filter is used in Section Bar. function my_section_title($title){ return " " . $title; } add_filter('jaw_section_title', 'my_section_title'); The result can look like this: List of all hooks you can find HERE
This filter is used in post box. It’s the cutted description and title text of your post. By standard way it looks like this. function my_cropped_text($text){ return strtoupper($text); } add_filter('jaw_cropped_text', 'my_cropped_text'); The result can look like this: List of all hooks you can find HERE
This filter is used in post box. It’s the description text of your post. By standard way it looks like this. function my_excerpt($excerpt){ return str_replace("e", "-SECRET-", $excerpt); } add_filter('jaw_excerpt', 'my_excerpt'); The result can look like this: List of all hooks you can find HERE