justwantanswers
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Neve] Media Query Problem on TabletSolution and ‘bug’ found:
The classeshide-on-desktop
,hide-on-mobile
andhide-on-tablet
exist in the Neve theme, which is great.However,
hide-on-tablet
will hide on mobile too not just on tablet.
To fix this behavior, I modified the theme directly and added amin-width
clause for tablets:@media (min-width: 576px) and (max-width: 959px) { .hide-on-tablet { display: none; } }
Forum: Themes and Templates
In reply to: [Neve] Understanding the editor logic??!!I’m quite new to WordPress as well.
There are two ‘editors’:
– ‘Customize’ is quite general: site-wide stuff like title, icon, layout, etc.. You can enable and disable titles there I think.
– ‘Edit Page’ is only for the page: add blocks, colors, buttons, etc…And than there is the Neve options (top-right corner icon in the
Edit Page
.It’s a bit of a learning curve and sometimes it’s better/easier/faster to just type code. I’m still working this one out tho.
Good luck.
- This reply was modified 2 years, 11 months ago by justwantanswers.
- This reply was modified 2 years, 11 months ago by justwantanswers.
- This reply was modified 2 years, 11 months ago by justwantanswers.
Forum: Themes and Templates
In reply to: [Neve] E_COMPILE_ERRORCould you share the content of the function at line 78? Does the
start.php
file exist? Have you modified said file?It might have to do with file permissions if the
start.php
exists; your WordPress installation should be in/var/www/html
. It uses thewww-data
user to open, read and modify files. If the files you are trying to access are in your/home/
folder,www-data
won’t necessarily have the permissions to access it.If it is the case, do not change the permission: you don’t want your open-to-everyone website to have access to the home folder and be able to modify any files there (
.bashrc
,.bash_history
,.local/
for example are critical).Re-install the theme in
/var/www/html/wp-content/theme/
with the correct permissions and ownership.- This reply was modified 2 years, 11 months ago by justwantanswers.
- This reply was modified 2 years, 11 months ago by justwantanswers.
- This reply was modified 2 years, 11 months ago by justwantanswers.