Matias Mann
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: exclude categorys from sub-blog NSFWHi @anderslinn, is “sex-som-funkar” a category itself or a page?
Forum: Fixing WordPress
In reply to: Author Picture not showing up on the postHi @ramg1967, you are using a theme that has not been updated for more than 2 years: https://wordpress.org/themes/latte/
It is possible that it will not work as expected, like with the author issue you mention. I know it will involve hard work but I would suggest changing to a theme currently supported.
Makes senses?
Forum: Fixing WordPress
In reply to: I want my homepage sidebar to be below the sliderGood job @melissaminnie ! It looks better now.
Are you using a plugin for the slider? The issue here is with the slider positioning, not sidebar.
Forum: Fixing WordPress
In reply to: Mobile vs desktop layoutThat will depend on how you create the blocks on the editor.
You can try creating a layout column so the image stacks on top when on mobile instead of showing in the same width that text.
I would also suggest to post the question in the Vogue theme forum also: https://wordpress.org/support/theme/vogue/
Makes sense?
Forum: Fixing WordPress
In reply to: How to reduce MENU Bar to 1 line.In the link you provided, if you put 6 tabs with reasonable text lenght they will fit.
For the other site I would ask you to open a new ticket and share the link.
Thanks!Please close the ticket if the issue has been solved =)
Forum: Fixing WordPress
In reply to: How to reduce MENU Bar to 1 line.You have too many items, that´s why the menu is wrapping in 2 lines.
I would suggest the following:
– Instead of: FAQ + Troubleshoting -> Put FAQ
– Remove the Home item
– Create hierarchical items. Put Distributors under Contact Us for example.Makes sense?
Forum: Fixing WordPress
In reply to: Link to a YouTube video@alanpickersgill, your theme is adding lightbox to all video links, that´s why it won´t open in another window:
This is the html output in the frontend:
<a href="https://www.youtube.com/watch?v=nXOT_Vx2P74" target="_blank" rel="noreferrer noopener" data-src="https://www.youtube.com/watch?v=nXOT_Vx2P74" data-lightbox="yes">Tie a Yellow Ribbon Round the Old Oak Tree</a>Please check the theme options if it is possible to disable lightbox and if not I would suggest asking the theme developer.
Makes sense?
- This reply was modified 6 years ago by Matias Mann.
Forum: Fixing WordPress
In reply to: Strange random number in blogHola @wpalsansan , por lo que veo en el sitio, esto sería el mensaje de GPDR, para avisar al usuario que tiene que aceptar el uso de cookies.
Fijate en las opciones del theme dónde se puede configurar y si no consulta con el desarrollador del tema para ver como te puede ayudar. ¿Me explico?
Forum: Fixing WordPress
In reply to: I want my homepage sidebar to be below the sliderHi @melissaminnie , in the Customizer > Custom CSS add this code:
.home .sidebar-right .content-area { float: none; }Forum: Fixing WordPress
In reply to: Big gap between post titles and body textI can see the issue using chrome. I believe the issue is caused by this plugin: https://es.wordpress.org/plugins/media-net-ads-manager/ or other plugin injection code.
Please try disabling each plugin one by one to define which one is causing the problemn!
Forum: Fixing WordPress
In reply to: Add Themes -> Upload Theme doesn’t work@thomjens the steps for uploading a theme:
1) Go to Appearance > Themes
2) Click Add New
3) Click on Upload Theme
4) Click on Browse and select the .zip file
5) Click on Install NowMakes sense?
Forum: Fixing WordPress
In reply to: Iframe / embed issuesWhen accesing your site it redirects to a registration page. It can be related with that.
Try setting the page where you have the iframe to public in WordPress and see what happens. Makes sense?Forum: Developing with WordPress
In reply to: How to add custom fields to a custom post type?Hi @berttervoert, I know you do not want to use a plugin but I would advice to use one to create Custom Fields and Metaboxes at least until you get familiar with how they work.
I would go with Advanced Custom Fields: https://es.wordpress.org/plugins/advanced-custom-fields/
The plugin is proven and has a great users community. It will cover most of the use cases and handle all validations, backups, etc, so you can focus on the business rules and design.
There are also other plugins to use as a base framework: https://wordpress.org/plugins/meta-box/ for creating the metaboxes and custom fields.
Also, please have a look at the WordPress docs on metaboxes: https://developer.wordpress.org/plugins/metadata/custom-meta-boxes/.
The content of custom meta boxes are usually HTML form elements where the user enters data related to a Plugin’s purpose, but the content can be practically any HTML you desire.
Forum: Fixing WordPress
In reply to: add_option_page without menu entryYou can use this filter to add the menu item:
// Link to settings page from plugins screen add_filter( 'plugin_action_links_' . plugin_basename(__FILE__), 'add_action_links' ); function add_action_links ( $links ) { $mylinks = array( /* options-general.php?page=mysettings Will create a link under Settings * themes.php?page=mysettings Will create a link under Appeareance * tools.php?page=mysettings Will create a link under Tools */ '<a href="' . admin_url( 'options-general.php?page=mysettings' ) . '">Link Name in Menu</a>', ); return array_merge( $links, $mylinks ); }Taken from WordPress documentation: https://developer.wordpress.org/reference/hooks/plugin_action_links_plugin_file/
Forum: Fixing WordPress
In reply to: Iframe / embed issuesHi @seanbrookes2904 , I checked the link from the iframe: https://www.google.com/maps/d/viewer?mid=1hn8C_tzbCYYdxJEou5h5Paiczx2DZ3L_&ll=54.31453436144874%2C-2.3637175500000467&z=6.
It says in Google Maps that the map is private, that´s why it won´t display in your WordPress.
Please set the map as public in Google Maps and it should work.