eminozlem
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Bootstrap Ultimate] Excerpt "Read More" is not a linkOk this is really weird. I dont even get “Read more >>” appended to the excerpt.
Could you tell me your values for the following :
Extent
Limit excerpt by
Excerpt Limit#countUnder Common > Loop options
Forum: Themes and Templates
In reply to: [Bootstrap Ultimate] Excerpt "Read More" is not a linkThat is very interesting. What is that exactly ? Menu item that displays category ? A page that displays posts or ?
I will try to reproduce it if I know where to look.Btw instead of hiding post_meta with CSS, you can simply turn them off in theme options
The carousel images are not full-width anymore -it used to be-.
Carousel and other modules will be converted into customizable widgets, its in the works.
Btw, you have already changed your theme it seems. Anyway, good luck, marking as resolved.
Forum: Themes and Templates
In reply to: [Bootstrap Ultimate] Mozilla width issue.Mozilla is doing the right thing, that button is not meant to fit there. See the screenshot: https://s1.postimg.org/i6iy049pb/ss_Untitled_3.jpg
You can solve it by
a.) increasing width of .form1-div to 53% and decreasing .nw-slogan to 35% accordingly.
b.) set fixed widths for inputsMarking as resolved
Forum: Themes and Templates
In reply to: [Bootstrap Ultimate] Google Fonts & Page LoadingBTW to solve the “website appears unformatted briefly” issue, you can open your functions.php and change
add_action('wp_head','eo_bswthemesup',9); function eo_bswthemesup(){ global $eo_options; $use_bsw_theme = of_get_option( 'use_bsw_themes' ); $bsw_theme = of_get_option( 'bsw_theme' ); if( $use_bsw_theme && $bsw_theme != "default" && $eo_options['bsw_theme_sup'] == "1" ) { wp_register_style( 'bsw_theme', get_template_directory_uri() . '/panel/of/themes/' . $bsw_theme . '.css', array(), '1.0', 'all' ); wp_enqueue_style( 'bsw_theme' ); } } add_action('wp_head','eo_override_css',1000); function eo_override_css(){ global $eo_options; $ov_cssf = get_template_directory().'/rsc/css/override.css'; if ( $eo_options['override_css'] == "1" && file_exists($ov_cssf) ) { wp_register_style( 'bsul-override', get_template_directory_uri() . '/rsc/css/override.css', array(), '1.0', 'all' ); wp_enqueue_style( 'bsul-override' ); } }
TO:
add_action('wp_enqueue_scripts','eo_bswthemesup',9); function eo_bswthemesup(){ global $eo_options; $use_bsw_theme = of_get_option( 'use_bsw_themes' ); $bsw_theme = of_get_option( 'bsw_theme' ); if( $use_bsw_theme && $bsw_theme != "default" && $eo_options['bsw_theme_sup'] == "1" ) { wp_register_style( 'bsw_theme', get_template_directory_uri() . '/panel/of/themes/' . $bsw_theme . '.css', array(), '1.0', 'all' ); wp_enqueue_style( 'bsw_theme' ); } } add_action('wp_enqueue_scripts','eo_override_css',10); function eo_override_css(){ global $eo_options; $ov_cssf = get_template_directory().'/rsc/css/override.css'; if ( $eo_options['override_css'] == "1" && file_exists($ov_cssf) ) { wp_register_style( 'bsul-override', get_template_directory_uri() . '/rsc/css/override.css', array(), '1.0', 'all' ); wp_enqueue_style( 'bsul-override' ); } }
Basically you need to change ‘wp_head’ hooks to ‘wp_enqueue_scripts’ hooks for eo_bswthemesup() function.
Forum: Themes and Templates
In reply to: [Bootstrap Ultimate] Fatal Error – Feed RelatedFor the time being, you can simply disable the feed by going into
Options > Dev. > Dashboard Boxes.If you select eoTheme News it will be disabled. Like so: https://s24.postimg.org/lt0l15wmt/eexbx_Clipboard01.jpg
Btw, as you see in the picture, selecting admin boxes will disable them NOT enable. So maybe i should rename “Dashboard Boxes” to “Remove Dashboard Boxes” to avoid confusion.
Forum: Themes and Templates
In reply to: [Bootstrap Ultimate] Fatal Error – Feed RelatedYea it’s supposed to retrieve theme related news & updates. I’m aware of the error, it must be 4.x related. I’ll look into it and fix in the next release.
Forum: Themes and Templates
In reply to: [Bootstrap Ultimate] Excerpt "Read More" is not a linkRead More link should link to full post already. Do you have a link so I can see what the problem is – where it links to rather than full post ?
Forum: Themes and Templates
In reply to: [Bootstrap Ultimate] How-to DocumentationDetailed docs is in the works, but for the moment you can check the Theme Options > About tab > Tips section for a few pointers.
Let me know if you wanna know sth in particular. Marking as resolved.Cool, let me know if you need anything. I hope the next major release would be ready by than -1.5.0-
Tens of bugs are scheduled to be fixed in the next release.Forum: Themes and Templates
In reply to: [Bootstrap Ultimate] Google Fonts & Page LoadingFirst off, I also encounter the annoying “website appears unformatted briefly” myself when using bootswatch sub-themes, i will make sure to look into the issue, it should be fixed in the next release.
Secondly, the cerulean sub-theme overrides your choosing of font since -i am guessing- you have “style superiorty” ON in sub-theme options. Try turning it OFF and see if it works better for you (This time, some other things may be overriding cerulain styles, it’s a dilemma I know).
Or another way is to add
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: "Alegreya Sans",arial,sans-serif; }
under Common > Quick Start > CSS box.
Of course, then you’d have to remember to change it accordingly manually, when you change your choice of font.
Let me know if I can help you with anything further.
Sorry to see that you have changed to the default twentytwelve theme. Marking as resolved
It’s a common problem that has been noted before. Translations will be fixed in the next release.
The thing is, the “Read More” text is hardcoded by mistake, you can change it by going in your /inc/modules/highlights.php or featurettes and change it by hand as a temprorary solution.
Marking as resolved, sorry for the inconvenience.
Forum: Themes and Templates
In reply to: [Bootstrap Ultimate] Google Fonts & Page LoadingCan I have a link to check the issues ?
Forum: Themes and Templates
In reply to: [Bootstrap Ultimate] Mobile Top Nav ButtonHmm.. I should look into that, however I do not use nor recommend using the dropdown mobile menu.
Select menu is more handy for mobile anyway, maybe you should simply switch to that ?? ?