CeeWP
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [The WP] Change contact emailHi
You can do it under theme settings.
https://wordpress.com/support/customizer/Hi Mikko;
I create custom plugin for adding posts, tags and custom fields to WordPress. I tried trigger to Relevanssi but my previous methods did not work. Your methot is works!Before; I got an error of relevanssi_insert_edit() function was not found. This error is due to plugin ordering. But I solved this with a plugin order function.
function this_plugin_last() { $wp_path_to_this_file = preg_replace('/(.*)plugins\/(.*)$/', WP_PLUGIN_DIR."/$2", __FILE__); $this_plugin = plugin_basename(trim($wp_path_to_this_file)); $active_plugins = get_option('active_plugins'); $this_plugin_key = array_search($this_plugin, $active_plugins); array_splice($active_plugins, $this_plugin_key, 1); array_push($active_plugins, $this_plugin); update_option('active_plugins', $active_plugins); } add_action("activated_plugin", "this_plugin_last");
https://gist.github.com/bappi-d-great/26808240df88dd1fc3fe
The “relevanssi_insert_edit” function works perfectly now
if (function_exists('relevanssi_insert_edit')) { relevanssi_insert_edit($new_ID); }
Thank you for your detailed reply. Your plug-in works very well. Please continue to develop and supporting.
Have a good weekend.- This reply was modified 7 years, 1 month ago by CeeWP.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Do I have to manually rebuild the index?You’re right Tim, have a nice day. Thanks.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Do I have to manually rebuild the index?Hi Mikko;
I’am using wp_insert_post function for adding new posts. But Relevanssi is not triggered. I can not solve this problem.
Would it be correct to use this code in wp cron?
relevanssi_build_index(true);
(I have a big database)
Thanks for this great plugin.
Forum: Themes and Templates
In reply to: [The WP] Adjusting width of navigation menuHi,
Please try this. I tried and works for menu with 5 items..main-navigation ul { width: 100%; } .main-navigation li { display: inline-block; width: 20%; /* 20 = 100 / item count */ margin:0; padding:0; } .main-navigation li a { width: 100%; text-align: center; margin:0 auto !important; /*padding:0 !important;*/ }
Forum: Themes and Templates
In reply to: [The WP] Adjusting width of navigation menuHi;
.main-navigation li { width: 20%; /* 20 = 100 / item count */ margin:0; padding:0; } .main-navigation li a { width: 100%; text-align: center; margin:0 !important;; padding:0 !important;; }
Please try this custom css.
Forum: Themes and Templates
In reply to: [The WP] Header Contact InfoHi, Use this custom CSS for these modifications.
.header-description .cp {
font-size: 1.22em;
font-family: Verdana;
}
.header-description .ca {
font-size: 1.52em;
font-family: Arial;
}—
Class names:
.cp = phone
.ca = address
.cm = mail
.ch = hoursForum: Themes and Templates
In reply to: [The WP] Widget sitting on sliderSorry, such an option is not yet available.
But thank you for your advice and good feedback.
Thanks.- This reply was modified 7 years, 4 months ago by CeeWP.
Forum: Themes and Templates
In reply to: [The WP] Changing Font Size on the Contact InfoThe WP Theme
@coldinskagway
Changing Font Size on the Contact Info for footer. Please use this custom css.site-footer .footer-contact-info { font-size: 1.35em; }
Great Theme
@thetrashcancleaners
Please visit theme forum topic > https://www.ads-software.com/support/theme/great/Forum: Themes and Templates
In reply to: [The WP] Link ColorsHi,
Go to appearence > customize > The WP Options > Colors and change primary color.
– or you can use a custom CSS
for example:a { color:#FFFFFF; }
Forum: Themes and Templates
In reply to: [The WP] Creating online class pages on The WP ThemeHi,
The theme only shows the content to the user. Please try to do this with the “plugin”.If you love this theme, please write a review.<br>
CeeWP, Thanks.Forum: Themes and Templates
In reply to: [The WP] Home page problemsHi,
Our theme does not control the main page.https://en.support.wordpress.com/pages/front-page/
https://www.ads-software.com/support/topic/homepage-not-showing-content/
Thank you for using the theme.
Forum: Themes and Templates
In reply to: [The WP] Logo, title & strap lineHi.
I guess that’s what you want to do:
[ LOGO TYPE:IMAGE ]
[ TAGLINE TYPE:TEXT ]You can not do both like that. But you can change the source codes.
My advice is: Design your own logo and add a row to the bottom.
For example ??Forum: Themes and Templates
In reply to: [The WP] Logo, title & strap line0. First, Open the Appearance > Customize in wp-admin
1. For eating cake, go to The WP Options > Header > logo : Click to remove button
2. You can set the Site Title and Tagline for our pancake in “Site Identity” panel.
https://codex.www.ads-software.com/Appearance_Customize_Screen#Site_Identity
3. There is no restriction for theme widgets. You can add as much as you want to cake.
4. Bon Appetit.If you love this theme, please write a review.
CeeWP, Thanks.Forum: Themes and Templates
In reply to: [The WP] live composer on HomeSettings for “static start page”:
Static Front Page
-Front page displays: A static page
-Front page: SelectedThe WP Settings > General
– Your latest posts : Checked* Shortcodes within the page can cause problems.
https://codex.www.ads-software.com/Debugging_in_WordPress- This reply was modified 7 years, 9 months ago by CeeWP.