Julien
Forum Replies Created
-
Thanks for the solution.
But it’s not manageable to edit the plugin in the long run. I hope this will get fixed on next release…Forum: Plugins
In reply to: [The Events Calendar] Error in iCal Export templateI’ve submitted a pull request on the Github repository, in its
develop
branch.Waiting for review.
Best regards,
Forum: Plugins
In reply to: [The Events Calendar] Error in iCal Export templateTested as well on 4.2.1.1. The issue is still there but the fix is working perfectly.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Error when create new TableHi Clément,
it seems there is an error (PHP Warning issue) regarding an object instance property probably setup dynamically.
What you can do in the meantime is to tell your local environment to not trigger exception for all errors. You can do so by setting the constant “THEMOSIS_ERROR_REPORT” to a value of 0 inside your “config/environments/local.php” file.
It doesn’t fix the issue but it will let you develop your solution until a fix is available.
Regards,
Forum: Plugins
In reply to: Which type of frameworks?One thing to keep in mind is whatever tool you use, it is WordPress and WordPress development only. So you’re safe because I don’t see Automattic shutting down WordPress any time soon.
Regarding the “frameworks” for WordPress, there are all open-source so even if one of them is stopping active development you can still get a copy of the code source and update it for your project or give it a new life.
Now for my part, the Themosis framework, there are no UI framework included by default because it’s easy to get one and add it to your theme. Just pick the library you want (Bootstrap, Foundation, …) and you’re good to go in order to style data grids.
There is not really a “one-do-all” package. Pick the tools you’re most confident with, as a developer and for your project as well, compose everything together and you’re good to go.
Forum: Themes and Templates
In reply to: building wordpress themeHi,
you can start with this link for a general getting started guide with WordPress:
For theme development, here is a starting point:
Hope it helps.
Forum: Themes and Templates
In reply to: [Spasalon] Some problems to solveI’m glad it helps you.
It is may be the “//” comment I wrote. To put comments in a css file we have to use:
/* This is my comment */
Maybe that’s why it seems to not working well.
If the issues are fixed, don’t forget to set this topic as “resolved”.
Thanks ??
Forum: Themes and Templates
In reply to: [Spasalon] Some problems to solveOk here is the solution I guess. Copy the following code in the defaults.css file you’ve just edit:
.navbar-inverse .nav li.current_page_item { background-color: #0000ff; // Change the color according your taste color: #fff; // Change color here too for the text }
Write this code at the end of the file and it should work.
Forum: Themes and Templates
In reply to: [Spasalon] Some problems to solveFor 2nd: look at this code in the stylesheets. The file you’re lookink for is in the ‘css/skins/ folder. At line 43 of the default.css file change this code:
.pink-container p { border-left: 1px solid #F05D7D; // Change the color of the border color: #FCCED7; // Change the color of the text }
I’m not sure what you refer to in your 1st issue but I guess it is also in this file.
Forum: Themes and Templates
In reply to: [Spasalon] Some problems to solveHi!
This theme doesn’t offer options to change the colors. At least in the free version. You could check what their pro option offers.
Your 1st and 2nd need to change code in the stylesheets of the theme.
The 3rd, you can delete the content from the options page the theme has. But it will just display nothing in the front-end and you’ll keep the brown/beige stripe. If you want to remove everything because you know you’ll never use those features, you have to edit the “front-page.php” file of your theme. Remove this code:
<!-- Products & Tagline with Description --> <div class="container-fluid"> <div class="container"> <div class="jumbotron"> <h1 class="home_product_tagline"><?php echo $current_options['product_title']; ?></h1> <p><?php echo $current_options['product_contents']; ?></p> </div> <?php get_template_part('index','product'); ?> </div> </div>
Forum: Plugins
In reply to: [Yoast SEO] Fatal Error unable to delete old versionFrom github, they are fixing this issue.
Did you setup any redirections within your hosting ?
Your server is force to display the ‘wp-admin/install.php’ file whatever urls of your site we use.
You can also clean your .htaccess file (back it up first) and check what happen. Make sure that your “wordpress url” and “site url” are both set to “https://www.themonteoz.com/” (if your wordpress installation is at the same url) under the “General” tab in your admin settings.
Forum: Fixing WordPress
In reply to: url problemMy pleasure ??
Don’t forget to mark your post as “resolved” ??
Forum: Fixing WordPress
In reply to: url problemWell not sure to understand your question but “abc.net” and “maadandmcc.com” are 2 different domains and permalinks are not made for this.
If you want the url to be “https://www.abc.net/my-post/” you have no other choice than install WordPress on the root of the server for this domain.
Permalinks are equal to “pretty links”. They allow you to change a query string url (?p=10) to something easily recognizable and better for seo like (/my-post). But you are sticked to the domain where wordpress is installed.
Hope it clarifies permalinks…
Forum: Fixing WordPress
In reply to: Images disappeared from uploads folderNot to my knowledge but you could take a look here: